From 7af8d821f8d585ce06e3a2198aaaaeb72fdc8aba Mon Sep 17 00:00:00 2001 From: Wizzard <rich@bandaholics.cash> Date: Tue, 11 Mar 2025 04:13:47 -0400 Subject: [PATCH] fix: change map addr offset to +384 --- src/dma/threaddata/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dma/threaddata/mod.rs b/src/dma/threaddata/mod.rs index 993e172..1ba32bd 100755 --- a/src/dma/threaddata/mod.rs +++ b/src/dma/threaddata/mod.rs @@ -169,7 +169,7 @@ impl CsData { { // Globals let tick_count_addr = (self.globals + 0x40).into(); - let map_addr = (self.globals + 0x1B8).into(); + let map_addr = (self.globals + 384).into(); // Gamerules let bomb_dropped_addr = (self.gamerules + cs2dumper::client::C_CSGameRules::m_bBombDropped as u64).into();