use of logisticspipes.interfaces.IModuleWatchReciver in project LogisticsPipes by RS485.
the class HUDStartModuleWatchingPacket method processPacket.
@Override
public void processPacket(EntityPlayer player) {
IModuleWatchReciver handler = this.getLogisticsModule(player, IModuleWatchReciver.class);
if (handler == null) {
return;
}
handler.startWatching(player);
}
use of logisticspipes.interfaces.IModuleWatchReciver in project LogisticsPipes by RS485.
the class HUDStopModuleWatchingPacket method processPacket.
@Override
public void processPacket(EntityPlayer player) {
IModuleWatchReciver handler = this.getLogisticsModule(player, IModuleWatchReciver.class);
if (handler == null) {
return;
}
handler.stopWatching(player);
}
Aggregations