3
0
Fork 0

Small bug fixed

This commit is contained in:
stijnb1234 2020-09-26 14:38:36 +02:00
parent 3fdf2aff92
commit 65128f67cd

View file

@ -184,7 +184,7 @@ public class TPPCMD implements CommandExecutor {
HashMap<String, String> replacements = new HashMap<>();
replacements.put("%sec1%", args[5]);
replacements.put("%sec2%", args[6]);
replacements.put("%sec2%", args.length == 7 ? args[6] : "" + 1);
sender.sendMessage(ConfigUtil.getMessage("RedstoneTimer.Started", replacements));
return true;