Forgot safety check

This commit is contained in:
Treeku
2014-04-08 05:09:18 +01:00
parent 9a18eb1eaa
commit 74af0d5244
+1 -1
View File
@@ -114,7 +114,7 @@ public class CommandService implements INetworkDispatch {
break;
case 1: // Other Only
if (target == actor) {
if (target != null && target == actor) {
return false;
}