mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 09:31:07 +01:00
Makes fireworks rockets infinite in creative mode
This commit is contained in:
parent
62adbb9625
commit
c46c07f836
1 changed files with 3 additions and 1 deletions
|
@ -15,7 +15,9 @@ local function register_rocket(n, duration, force)
|
|||
local elytra = mcl_playerplus.elytra[user]
|
||||
if elytra.active and elytra.rocketing <= 0 then
|
||||
elytra.rocketing = duration
|
||||
if not minetest.is_creative_enabled(user:get_player_name()) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
minetest.sound_play("mcl_fireworks_rocket", {pos = user:get_pos()})
|
||||
end
|
||||
return itemstack
|
||||
|
|
Loading…
Reference in a new issue