From fbc1d6eb4bc15ad33f8eb5bfdf1558568883ef02 Mon Sep 17 00:00:00 2001 From: bones_was_here Date: Fri, 10 Jul 2020 20:59:32 +1000 Subject: [PATCH] Change type of Q3 entity disabling key variables to bool --- qcsrc/server/compat/quake3.qc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qcsrc/server/compat/quake3.qc b/qcsrc/server/compat/quake3.qc index dc1d2eaa7..5d9a47d79 100644 --- a/qcsrc/server/compat/quake3.qc +++ b/qcsrc/server/compat/quake3.qc @@ -255,10 +255,10 @@ spawnfunc(target_fragsFilter) // CTF spawnfuncs handled in mutators/gamemode_ctf.qc now -.float notteam; -.float notsingle; -.float notfree; -.float notta; +.bool notteam; +.bool notsingle; +.bool notfree; +.bool notta; .string gametype; bool DoesQ3ARemoveThisEntity(entity this) { -- 2.39.2