summaryrefslogtreecommitdiff
path: root/src/engine
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-11-18 20:00:42 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-11-18 20:00:42 -0600
commitc1fa820bfc075e38d592fc630bc19ada9195d45d (patch)
tree51177a2731604e859f3957d2aab522ecc98c87d8 /src/engine
parentf59fa4a7cd467bb7efed4b7af5a9f7ea8abb17d2 (diff)
Added spawner mod as an option on developer
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/fox_game.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/fox_game.c b/src/engine/fox_game.c
index 030446d8..5a08d025 100644
--- a/src/engine/fox_game.c
+++ b/src/engine/fox_game.c
@@ -627,9 +627,9 @@ void Game_Update(void) {
#if MODS_FPS_COUNTER == 1
Play_RenderFps();
#endif
-#if MODS_SPAWNER == 1
- Spawner();
-#endif
+ if(CVarGetInteger("gSpawnerMod", 0) == 1){
+ Spawner();
+ }
}
RCP_SetupDL(&gMasterDisp, SETUPDL_83);
gDPSetPrimColor(gMasterDisp++, 0, 0, 255, 255, 0, 255);