aboutsummaryrefslogtreecommitdiff
path: root/primedev/server/alltalk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'primedev/server/alltalk.cpp')
-rw-r--r--primedev/server/alltalk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/primedev/server/alltalk.cpp b/primedev/server/alltalk.cpp
index 74119309..4eb5aef7 100644
--- a/primedev/server/alltalk.cpp
+++ b/primedev/server/alltalk.cpp
@@ -15,7 +15,7 @@ size_t __fastcall ShouldAllowAlltalk()
ON_DLL_LOAD_RELIESON("engine.dll", ServerAllTalk, ConVar, (CModule module))
{
// replace strcmp function called in CClient::ProcessVoiceData with our own code that calls ShouldAllowAllTalk
- CMemoryAddress base = module.Offset(0x1085FA);
+ CMemory base = module.Offset(0x1085FA);
base.Patch("48 B8"); // mov rax, 64 bit int
// (uint8_t*)&ShouldAllowAlltalk doesn't work for some reason? need to make it a uint64 first