diff options
Diffstat (limited to '')
-rw-r--r-- | src/control/Script.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/control/Script.h b/src/control/Script.h index aafc681c..ae984c59 100644 --- a/src/control/Script.h +++ b/src/control/Script.h @@ -570,12 +570,11 @@ public: float LimitAngleOnCircle(float angle) { return angle < 0.0f ? angle + 360.0f : angle; } + bool ThisIsAValidRandomCop(uint32 mi, int cop, int swat, int fbi, int army, int miami); bool ThisIsAValidRandomPed(uint32 pedtype, int civ, int gang, int criminal); bool CheckDamagedWeaponType(int32 actual, int32 type); - static bool ThisIsAValidRandomCop(int32 mi, bool cop, bool swat, bool fbi, bool army, bool miami); - }; #ifdef USE_DEBUG_SCRIPT_LOADER |