Added comments to note FML-only methods

This commit is contained in:
bspkrs 2013-03-14 01:29:36 -03:00
parent d98a805b30
commit 30f76c67e5
1 changed files with 12 additions and 1 deletions

View File

@ -330,6 +330,8 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
} }
/** /**
* Called client side to receive a custom payload for this mod * Called client side to receive a custom payload for this mod
*
* NOTE: this method is not provided in Risugami's implementation of BaseMod!
* *
* @param packet * @param packet
*/ */
@ -356,7 +358,9 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
return false; return false;
} }
/*
* NOTE: this method is not provided in Risugami's implementation of BaseMod!
*/
@Override @Override
public void serverConnect(NetHandler handler) { public void serverConnect(NetHandler handler) {
@ -368,6 +372,9 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
} }
/*
* NOTE: this method is not provided in Risugami's implementation of BaseMod!
*/
@Override @Override
public void serverDisconnect() { public void serverDisconnect() {
@ -411,6 +418,8 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
} }
/** /**
* Called when a new client logs in. * Called when a new client logs in.
*
* NOTE: this method is not provided in Risugami's implementation of BaseMod!
* *
* @param player * @param player
*/ */
@ -421,6 +430,8 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr
/** /**
* Called when a client logs out of the server. * Called when a client logs out of the server.
*
* NOTE: this method is not provided in Risugami's implementation of BaseMod!
*/ */
@Override @Override
public void onClientLogout(INetworkManager mgr) public void onClientLogout(INetworkManager mgr)