From 1e4c34496980991227947de6e32899c5484e0341 Mon Sep 17 00:00:00 2001 From: MisterE123 Date: Tue, 19 Apr 2022 15:34:22 -0400 Subject: [PATCH] disable spectate for now --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 102cf09..2ba98b5 100644 --- a/init.lua +++ b/init.lua @@ -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"}, })