1
0
Fork 0

Open inv on shift+rightclick

This commit is contained in:
cora 2022-10-14 22:48:01 +02:00 committed by Gitea
parent cb7df652f7
commit 0ec4cb5502
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ function mcl_entity_invs.register_inv(entity_name,show_name,size,no_on_righclick
if not no_on_righclick then
local old_rc = minetest.registered_entities[entity_name].on_rightclick
minetest.registered_entities[entity_name].on_rightclick = function(self,clicker)
mcl_entity_invs.show_inv_form(self,clicker,"")
if clicker:get_player_control().sneak then
mcl_entity_invs.show_inv_form(self,clicker,"")
return
end
if old_rc then return old_rc(self,clicker) end
end
end