summaryrefslogtreecommitdiffstats
path: root/src/core/re3.cpp
diff options
context:
space:
mode:
authormajestic <majesticcoding@gmail.com>2020-06-03 23:48:26 +0200
committermajestic <majesticcoding@gmail.com>2020-06-03 23:48:26 +0200
commit20ffcb68b698d88d62360b667a2727e0e80698bd (patch)
tree769e45483575301423fd4fbdf27c6405c90d229e /src/core/re3.cpp
parentfixed CPed::AddInCarAnims (diff)
downloadre3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar.gz
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar.bz2
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar.lz
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar.xz
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.tar.zst
re3-20ffcb68b698d88d62360b667a2727e0e80698bd.zip
Diffstat (limited to 'src/core/re3.cpp')
-rw-r--r--src/core/re3.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/re3.cpp b/src/core/re3.cpp
index 302f4fc1..18f699b4 100644
--- a/src/core/re3.cpp
+++ b/src/core/re3.cpp
@@ -165,7 +165,9 @@ CustomFrontendOptionsPopulate(void)
#endif
#ifdef DEBUGMENU
-void WeaponCheat();
+void WeaponCheat1();
+void WeaponCheat2();
+void WeaponCheat3();
void HealthCheat();
void VehicleCheat(bool something, int model);
void BlowUpCarsCheat();
@@ -397,7 +399,9 @@ DebugMenuPopulate(void)
DebugMenuAddVar("Time & Weather", "Wind", (float*)&CWeather::Wind, nil, 0.1f, 0.0f, 1.0f);
DebugMenuAddVar("Time & Weather", "Time scale", (float*)&CTimer::GetTimeScale(), nil, 0.1f, 0.0f, 10.0f);
- DebugMenuAddCmd("Cheats", "Weapons", WeaponCheat);
+ DebugMenuAddCmd("Cheats", "Weapon set 1", WeaponCheat1);
+ DebugMenuAddCmd("Cheats", "Weapon set 2", WeaponCheat2);
+ DebugMenuAddCmd("Cheats", "Weapon set 3", WeaponCheat3);
DebugMenuAddCmd("Cheats", "Money", MoneyCheat);
DebugMenuAddCmd("Cheats", "Health", HealthCheat);
DebugMenuAddCmd("Cheats", "Wanted level up", WantedLevelUpCheat);