fix: change map addr offset to +384

This commit is contained in:
Wizzard 2025-03-11 04:13:47 -04:00
parent c86216ec6e
commit 7af8d821f8

@ -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();