1
0
Fork 0

Fix title double display in boats and minecarts

This commit is contained in:
cora 2022-10-14 22:40:24 +02:00 committed by Gitea
parent 05232e99cd
commit cb7df652f7
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ 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,show_name)
mcl_entity_invs.show_inv_form(self,clicker,"")
if old_rc then return old_rc(self,clicker) end
end
end