diff --git a/src/game/iw3/mp/main.cpp b/src/game/iw3/mp/main.cpp index f882484..7205c8e 100644 --- a/src/game/iw3/mp/main.cpp +++ b/src/game/iw3/mp/main.cpp @@ -116,6 +116,9 @@ IW3_MP_Plugin::IW3_MP_Plugin() { DisableFastfileAuth(); + // default loc_warnings off to prevent console spam + *(volatile uint8_t *)0x821FB069 = 0xE1; + // Special modules need to be registered first RegisterModule(new Config()); RegisterModule(new Events()); diff --git a/src/game/t4/mp/components/patches.cpp b/src/game/t4/mp/components/patches.cpp index f638778..14d87ff 100644 --- a/src/game/t4/mp/components/patches.cpp +++ b/src/game/t4/mp/components/patches.cpp @@ -36,6 +36,9 @@ Patches::Patches() DisableFastfileRsaChecks(); EnableExplosiveKnockback(); EnableRocketJumping(); + + // default loc_warnings off to prevent console spam + *(volatile uint8_t *)0x82292ABF = 0x0; } } // namespace mp } // namespace t4