Add missing SideOnly in BaseMod

NetClientHandler exists only on client side and thus method using it should be annotated with SideOnly.
This commit is contained in:
Grom PE 2013-08-01 14:19:30 +07:00
parent 952218c845
commit 971dc1eb00
1 changed files with 1 additions and 0 deletions

View File

@ -448,6 +448,7 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
return null;
}
@SideOnly(CLIENT)
public void clientCustomPayload(NetClientHandler handler, Packet250CustomPayload packet)
{