Fixed wrong directory location from commit #e16e037

This commit is contained in:
Waverunner
2014-08-09 13:15:57 -04:00
parent 90fc62ccff
commit dd2d4cfe93
+1 -1
View File
@@ -459,7 +459,7 @@ public class CommandService implements INetworkDispatch {
} else {
if (FileUtilities.doesFileExist("scripts/commands/" + command.getCommandName().toLowerCase() + ".py")) {
System.err.print("Command " + command.getCommandName() + " is considered a combat command by the client but has a regular command script!");
core.scriptService.callScript("scripts/commands/combat/", command.getCommandName().toLowerCase(), "run", core, attacker, target, "");
core.scriptService.callScript("scripts/commands/", command.getCommandName().toLowerCase(), "run", core, attacker, target, "");
}
}