core/run_command: guard against invalid potential_changes

This commit is contained in:
Starbeamrainbowlabs 2023-07-11 19:12:04 +01:00
parent 177aea02a8
commit 5baa72cf6f
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 0 deletions

View File

@ -37,6 +37,10 @@ local function run_command(cmdname, options, player_name, paramtext)
if options.nodes_needed then
local potential_changes = options.nodes_needed(player_name, wea_c.table.unpack(parse_result))
if type(potential_changes) ~= "number" then
worldedit.player_notify(player_name, "Error: The command '"..cmdname.."' returned a "..type(potential_changes).." instead of a number when asked how many nodes might be changed. Abort. This is a bug.")
return
end
local limit = wea_c.safe_region_limit_default
if wea_c.safe_region_limits[player_name] then