From dd2d4cfe9354813383f2935c4ca8a2b5fdd00afa Mon Sep 17 00:00:00 2001 From: Waverunner Date: Sat, 9 Aug 2014 13:15:57 -0400 Subject: [PATCH] Fixed wrong directory location from commit #e16e037 --- src/services/command/CommandService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/command/CommandService.java b/src/services/command/CommandService.java index 59d2590a..ab02d15f 100644 --- a/src/services/command/CommandService.java +++ b/src/services/command/CommandService.java @@ -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, ""); } }