1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-07-15 06:10:27 +02:00

Remove ignore list and fix many warnings

This commit is contained in:
Panquesito7
2020-02-08 01:27:57 -06:00
parent 198cd4b4bc
commit 25aaab20de
10 changed files with 44 additions and 43 deletions

View File

@ -43,7 +43,7 @@ local brush_on_use = function(itemstack, placer)
-- this isn't really clean...
local player_notify_old = worldedit.player_notify
worldedit.player_notify = function(name, msg)
worldedit.player_notify = function(player, msg)
if string.match(msg, "^%d") then return end -- discard "1234 nodes added."
return player_notify_old(name, msg)
end