mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-12-26 11:17:30 +01:00
Correct crash when no arrow is in the inventory and the bow is drawn.
This commit is contained in:
parent
623f60ab79
commit
c4271cf13d
@ -219,7 +219,7 @@ controls.register_on_release(function(player, key, time)
|
||||
end)
|
||||
|
||||
controls.register_on_hold(function(player, key, time)
|
||||
if key ~= "RMB" then
|
||||
if key ~= "RMB" or not get_arrow(player) then
|
||||
return
|
||||
end
|
||||
local name = player:get_player_name()
|
||||
|
Loading…
Reference in New Issue
Block a user