I have a working TE pedestal, you right click with an item it puts that item on the pedestal, I am attempting to, when shift right click it opens a gui of the pedestal's inv. I followed bedrockminer's tutorial as I have not found anything good for 1.10 yet and got an errorless build with a gui and a gui handler but when I shift right click the pedestal nothing happens, no error, no crash, no gui... nothing
Github: https://github.com/Janellope/DigiCraft
This is the code that should be executing at a shift right click:
if (!world.isRemote)
{
player.openGui(Main.instance, ModGuiHandler.TEPedestalGUI, world, pos.getX(), pos.getY(), pos.getZ());
}
return true;
any help is greatly appreciated, it feels like every night I come here with a new problem and every morning with the help of this forum I solve the previous problem. Thank you all for such wonderful support.