Remove resolved TODO comments

This commit is contained in:
Zughy 2023-09-12 12:04:11 +02:00
parent 5abcda6d1f
commit 161a94b2ae
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
-- TODO metti schematica dentro cartella WE
local function load_schematic()
local src_dir = minetest.get_modpath("bl_tutorial") .. "/schems"
local wrld_dir = minetest.get_worldpath() .. "/schems"

View File

@ -340,7 +340,7 @@ function block_league.hitter_or_suicide(arena, player, dmg_rcvd_table, no_hitter
local last_hitter_timestamp = 99999
for pla_name, dmg_data in pairs(dmg_rcvd_table) do
if arena.current_time > dmg_data.timestamp - 5 and last_hitter_timestamp > dmg_data.timestamp then --TODO crasha se toccano raggi avversari prima di on_start
if arena.current_time > dmg_data.timestamp - 5 and last_hitter_timestamp > dmg_data.timestamp then
last_hitter = pla_name
last_hitter_timestamp = dmg_data.timestamp
end