GoodTimeStudio / Production-Line

A Minecraft Mod
MIT License
11 stars 9 forks source link

SideProxy Crash #5

Closed BestOwl closed 9 years ago

BestOwl commented 9 years ago

Unkown error

liach commented 9 years ago

Actually the @SidedProxy needs to be used on a variable, which is a CommonProxy, just like

@SidedProxy(clientSide = "com.mcgoodtime.gti.client.ClientProxy", serverSide = "com.mcgoodtime.gti.common.core.CommonProxy")
public CommonProxy commonProxy;

Which the ClientProxy extends the CommonProxy, or you can make another ServerProxy which extends CommonProxy, but that's not used so often.