Remove duplicated creative inventory code

This commit is contained in:
AFCMS 2023-07-13 23:57:18 +02:00
parent 3fe3153a40
commit 9d184e9897
No known key found for this signature in database
GPG Key ID: 8720389A25B652E3
1 changed files with 0 additions and 5 deletions

View File

@ -57,11 +57,6 @@ function minetest.is_creative_enabled(name)
return false
end
-- Don't subtract from inv when placing in gamemode-creative
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack, pointed_thing)
if placer and placer:is_player() and minetest.is_creative_enabled(placer:get_player_name()) then return true end
end)
minetest.register_chatcommand("gamemode", {
params = S("[<gamemode>] [<player>]"),
description = S("Change gamemode (survival/creative) for yourself or player"),