Decrease immunity time from 6 to 5 seconds

This commit is contained in:
marco_a 2024-01-05 01:41:55 +01:00
parent 28ac71812c
commit b240cc87d6
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,8 @@ arena_lib.register_minigame("block_league", {
properties = {
mode = 1, -- 0 Tutorial, 1 TD, 2 DM
score_cap = 5,
immunity_time = 6,
immunity_time = 5,
death_waiting_time = 6,
goal_orange = {},
goal_blue = {},
waiting_room_orange = {},

View File

@ -51,7 +51,7 @@ arena_lib.on_death("block_league", function(arena, p_name, reason)
p_meta:set_int("bl_death_delay", 1)
block_league.deactivate_zoom(player)
wait_for_respawn(arena, p_name, 6)
wait_for_respawn(arena, p_name, arena.death_waiting_time)
end)