forked from MagicBane/Server
Renamed class to not conflict with the java.lang version.
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
|
||||
package engine.net.client.handlers;
|
||||
|
||||
import engine.Enum;
|
||||
import engine.Enum.DispatchChannel;
|
||||
import engine.mbEnums;
|
||||
import engine.mbEnums.DispatchChannel;
|
||||
import engine.InterestManagement.WorldGrid;
|
||||
import engine.exception.MsgSendException;
|
||||
import engine.gameManager.ChatManager;
|
||||
@@ -146,10 +146,10 @@ public class TrackWindowMsgHandler extends AbstractClientMsgHandler {
|
||||
else if (!awo.isAlive())
|
||||
it.remove();
|
||||
|
||||
else if (awo.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||
else if (awo.getObjectType().equals(mbEnums.GameObjectType.PlayerCharacter)) {
|
||||
PlayerBonuses bonus = ((PlayerCharacter) awo).getBonuses();
|
||||
|
||||
if (bonus != null && bonus.getBool(Enum.ModType.CannotTrack, Enum.SourceType.None))
|
||||
if (bonus != null && bonus.getBool(mbEnums.ModType.CannotTrack, mbEnums.SourceType.None))
|
||||
it.remove();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user