Ajout du %faction%

This commit is contained in:
Maxlego08 2020-04-24 09:31:48 +02:00
parent d46bd90a1b
commit 0fa6857c11
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
name: zKoth
author: Maxlego08
main: fr.maxlego08.koth.ZKoth
version: 1.0.0.2
version: 1.0.0.3
softdepend: [PlaceholderAPI]
commands:

View File

@ -107,6 +107,7 @@ public class KothLootManager extends ZUtils {
String finalCommand = command.replace("%player%", player.getName());
finalCommand = finalCommand.replace("%name%", koth.getName());
finalCommand = finalCommand.replace("%faction%", factionListener.getFactionTag(player));
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), finalCommand);
});
@ -115,6 +116,7 @@ public class KothLootManager extends ZUtils {
String finalCommand = command.replace("%player%", player.getName());
finalCommand = finalCommand.replace("%name%", koth.getName());
finalCommand = finalCommand.replace("%faction%", factionListener.getFactionTag(player));
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), finalCommand);
}