Conflicts:
	src/resources/objects/creature/CreatureMessageBuilder.java
This commit is contained in:
Treeku
2014-04-26 00:12:22 +01:00
415 changed files with 8652 additions and 1142 deletions
+10 -1
View File
@@ -295,7 +295,16 @@ public class CommandService implements INetworkDispatch {
}
}
processCommand(actor, target, command, actionCounter, commandArgs);
if(command instanceof CombatCommand) {
try {
processCommand(actor, target, (BaseSWGCommand) command.clone(), actionCounter, commandArgs);
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
}
else
processCommand(actor, target, command, actionCounter, commandArgs);
return true;
}