Add new spell indicator icon and tooltip to the wizard trade GUI

This commit is contained in:
Electroblob77
2020-06-09 16:55:13 +01:00
parent 99a9524ee7
commit 7772f2e97f
9 changed files with 172 additions and 36 deletions
@@ -284,13 +284,21 @@ public class CommonProxy {
public void loadShader(EntityPlayer player, ResourceLocation shader){}
/**
* Gets the client side world using Minecraft.getMinecraft().world. <b>Only to be called client side!</b> Returns
* null on the server side.
* Gets the client-side world using {@code Minecraft.getMinecraft().world}. <b>Only to be called client side!</b>
* Returns null on the server side.
*/
public World getTheWorld(){
return null;
}
/**
* Gets the client-side player using Minecraft.getMinecraft().player. <b>Only to be called client side!</b> Returns
* null on the server side.
*/
public EntityPlayer getThePlayer(){
return null;
}
/**
* Returns true if the game is being viewed from the perspective of the given entity and is set to first-person
* view. Always returns false on the server side.