fixed #483, fixed minor bug in procedural terrain filters

This commit is contained in:
Light2
2014-04-21 15:50:45 +02:00
parent ff6c2d7d4c
commit 13b5fe7d95
2 changed files with 10 additions and 1 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;
}