Refer to FMLLog, not FMLRelaunchLog

This commit is contained in:
Christian 2012-08-17 09:17:25 -04:00
parent 8408f58fb1
commit 30d6970e77
1 changed files with 3 additions and 4 deletions

View File

@ -33,7 +33,6 @@ import cpw.mods.fml.common.discovery.ASMDataTable;
import cpw.mods.fml.common.network.FMLPacket.Type; import cpw.mods.fml.common.network.FMLPacket.Type;
import cpw.mods.fml.common.registry.EntityRegistry; import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.EntityRegistry.EntityRegistration; import cpw.mods.fml.common.registry.EntityRegistry.EntityRegistration;
import cpw.mods.fml.relauncher.FMLRelaunchLog;
public class FMLNetworkHandler public class FMLNetworkHandler
{ {
@ -101,7 +100,7 @@ public class FMLNetworkHandler
if (handleVanillaLoginKick(netLoginHandler, server, address, userName)) if (handleVanillaLoginKick(netLoginHandler, server, address, userName))
{ {
// No FML on the client // No FML on the client
FMLRelaunchLog.fine("Connection from %s rejected - no FML packet received from client", userName); FMLLog.fine("Connection from %s rejected - no FML packet received from client", userName);
netLoginHandler.completeConnection("You don't have FML installed, or your installation is too old"); netLoginHandler.completeConnection("You don't have FML installed, or your installation is too old");
return; return;
} }
@ -171,12 +170,12 @@ public class FMLNetworkHandler
{ {
if (login.field_73561_a == FML_HASH && login.field_73558_e == PROTOCOL_VERSION) if (login.field_73561_a == FML_HASH && login.field_73558_e == PROTOCOL_VERSION)
{ {
FMLRelaunchLog.finest("Received valid FML login packet from %s", handler.field_72538_b.func_74430_c()); FMLLog.finest("Received valid FML login packet from %s", handler.field_72538_b.func_74430_c());
instance().loginStates.put(handler, 1); instance().loginStates.put(handler, 1);
} }
else else
{ {
FMLRelaunchLog.fine("Received invalid FML login packet %d, %d from %s", login.field_73561_a, login.field_73558_e, FMLLog.fine("Received invalid FML login packet %d, %d from %s", login.field_73561_a, login.field_73558_e,
handler.field_72538_b.func_74430_c()); handler.field_72538_b.func_74430_c());
} }
} }