mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
DevTest: Reject buggy "/hp inf" command (#12830)
This commit is contained in:
@@ -28,7 +28,7 @@ minetest.register_chatcommand("hp", {
|
||||
return false, "No player."
|
||||
end
|
||||
local hp = tonumber(param)
|
||||
if not hp then
|
||||
if not hp or minetest.is_nan(hp) or hp < 0 or hp > 65535 then
|
||||
return false, "Missing or incorrect hp parameter!"
|
||||
end
|
||||
player:set_hp(hp)
|
||||
|
Reference in New Issue
Block a user