]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Expose chat messages to the mutator hook, fix hooks not calling EditProjectile Mario/mutator_hook_fixes 1493/head
authorMario <mario.mario@y7mail.com>
Sat, 22 Mar 2025 04:15:10 +0000 (14:15 +1000)
committerMario <mario.mario@y7mail.com>
Sat, 22 Mar 2025 04:15:10 +0000 (14:15 +1000)
qcsrc/server/chat.qc
qcsrc/server/hook.qc
qcsrc/server/mutators/events.qh

index 2e7faa7b15c6f3a9bb0a9e16b0fe833c8900acb8..8bbba21ae9890352d1cb27e86e09ef7b24b86b8c 100644 (file)
@@ -290,7 +290,7 @@ int Say(entity source, int teamsay, entity privatesay, string msgin, bool floodc
                ret = -1; // just hide the message completely
        }
 
-       MUTATOR_CALLHOOK(ChatMessage, source, ret);
+       MUTATOR_CALLHOOK(ChatMessage, source, ret, sourcemsgstr);
        ret = M_ARGV(1, int);
 
        string event_log_msg = "";
index 26753d95ec61c98ac26c8e0187120e333989354b..61a6319b75c74cea0939ca58e5db83d9f0a2b084 100644 (file)
@@ -367,6 +367,8 @@ void FireGrapplingHook(entity actor, .entity weaponentity)
        missile.hook_start = missile.hook_end = missile.origin;
 
        Net_LinkEntity(missile, false, 0, GrapplingHookSend);
+
+       MUTATOR_CALLHOOK(EditProjectile, actor, missile);
 }
 
 // NOTE: using PRECACHE here to make sure it's called after everything else
index 19f84a3a811d0cf281dda985c7cd3c8f07682e80..a89ad13cda14ceed955b1a1ef266f3259c940b9f 100644 (file)
@@ -1164,6 +1164,7 @@ MUTATOR_HOOKABLE(CopyBody, EV_CopyBody);
     /** sender */ i(entity, MUTATOR_ARGV_0_entity) \
     /** ret */ i(int, MUTATOR_ARGV_1_int) \
     /**/ o(int, MUTATOR_ARGV_1_int) \
+    /** message */ i(string, MUTATOR_ARGV_2_string) \
     /**/
 MUTATOR_HOOKABLE(ChatMessage, EV_ChatMessage);