From 30f76c67e5b90e21eac060fcc16a3a5a159f31bd Mon Sep 17 00:00:00 2001 From: bspkrs Date: Thu, 14 Mar 2013 01:29:36 -0300 Subject: [PATCH] Added comments to note FML-only methods --- fml/client/net/minecraft/src/BaseMod.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/fml/client/net/minecraft/src/BaseMod.java b/fml/client/net/minecraft/src/BaseMod.java index 37ec9193d..41c3cff50 100644 --- a/fml/client/net/minecraft/src/BaseMod.java +++ b/fml/client/net/minecraft/src/BaseMod.java @@ -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 + * + * NOTE: this method is not provided in Risugami's implementation of BaseMod! * * @param packet */ @@ -356,7 +358,9 @@ public abstract class BaseMod implements cpw.mods.fml.common.modloader.BaseModPr return false; } - + /* + * NOTE: this method is not provided in Risugami's implementation of BaseMod! + */ @Override 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 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. + * + * NOTE: this method is not provided in Risugami's implementation of BaseMod! * * @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. + * + * NOTE: this method is not provided in Risugami's implementation of BaseMod! */ @Override public void onClientLogout(INetworkManager mgr)