Renamed class to not conflict with the java.lang version.
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package engine.net.client.handlers;
|
||||
|
||||
import engine.Enum;
|
||||
import engine.exception.MsgSendException;
|
||||
import engine.gameManager.BuildingManager;
|
||||
import engine.gameManager.CombatManager;
|
||||
import engine.mbEnums;
|
||||
import engine.net.client.ClientConnection;
|
||||
import engine.net.client.msg.AttackCmdMsg;
|
||||
import engine.net.client.msg.ClientNetMsg;
|
||||
@@ -45,9 +45,9 @@ public class AttackCmdMsgHandler extends AbstractClientMsgHandler {
|
||||
return true;
|
||||
|
||||
AbstractWorldObject target = null;
|
||||
Enum.GameObjectType targetType;
|
||||
mbEnums.GameObjectType targetType;
|
||||
|
||||
targetType = Enum.GameObjectType.values()[msg.getTargetType()];
|
||||
targetType = mbEnums.GameObjectType.values()[msg.getTargetType()];
|
||||
|
||||
switch (targetType) {
|
||||
case Mob:
|
||||
|
||||
Reference in New Issue
Block a user