disable spectate for now

master
MisterE123 2022-04-19 15:34:22 -04:00
parent ce747a6b86
commit 1e4c344969
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ arena_lib.register_minigame( modname , {
-- The prefix (string) is what's going to appear in most of the lines printed by your mod. Default is [Arena_lib]
prefix = "["..modname.."] ",
spectate = false,
time_mode = 'incremental', -- for our sample minigame, we will use incrementing time. This will allow us to use on_time_tick if we want to.
@ -63,7 +63,7 @@ arena_lib.register_minigame( modname , {
sneak = true,},
disabled_damage_types = {"fall","punch"},
disabled_damage_types = {"fall","punch","set_hp"},
})