forked from VoxeLibre/VoxeLibre
Add command damage type (This is Non-MC)
This commit is contained in:
parent
53b0ad7347
commit
c9b4ddb923
|
@ -27,6 +27,7 @@ mcl_damage = {
|
||||||
explosion = {is_explosion = true},
|
explosion = {is_explosion = true},
|
||||||
cramming = {bypasses_armor = true}, -- unused
|
cramming = {bypasses_armor = true}, -- unused
|
||||||
fireworks = {is_explosion = true}, -- unused
|
fireworks = {is_explosion = true}, -- unused
|
||||||
|
command = {bypasses_armor = true, bypasses_invulnerability = true, bypasses_magic = true},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ local function handle_kill_command(suspect, victim)
|
||||||
mcl_death_messages.player_damage(victimref, msg)
|
mcl_death_messages.player_damage(victimref, msg)
|
||||||
end
|
end
|
||||||
-- DIE!
|
-- DIE!
|
||||||
victimref:set_hp(0)
|
victimref:set_hp(0, {_mcl_type = "command"})
|
||||||
-- Log
|
-- Log
|
||||||
if not suspect == victim then
|
if not suspect == victim then
|
||||||
minetest.log("action", string.format("%s killed %s using /kill", suspect, victim))
|
minetest.log("action", string.format("%s killed %s using /kill", suspect, victim))
|
||||||
|
|
Loading…
Reference in New Issue