Archived
0

These things have version numbers. Increased them for ya

This commit is contained in:
Pepich
2018-03-12 03:38:37 +01:00
parent aa1164ecb7
commit 80045e551f
2 changed files with 5 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ import net.nemez.chatapi.ChatAPI;
@Commands(CommandHolderType.File) @Commands(CommandHolderType.File)
@AutoRegisterListener @AutoRegisterListener
@Version(major = 4, minor = 0, revision = 1, compatible = 4) @Version(major = 4, minor = 0, revision = 2, compatible = 4)
public class Chat implements Module, Listener public class Chat implements Module, Listener
{ {
@@ -42,7 +42,7 @@ public class Chat implements Module, Listener
@EventHandler(priority = EventPriority.MONITOR) @EventHandler(priority = EventPriority.MONITOR)
public void onPlayerChat(AsyncPlayerChatEvent event) public void onPlayerChat(AsyncPlayerChatEvent event)
{ {
if (event.isCancelled()) if (event.isCancelled())
return; return;
Player player = event.getPlayer(); Player player = event.getPlayer();
String message = event.getMessage(); String message = event.getMessage();
@@ -154,7 +154,8 @@ public class Chat implements Module, Listener
} }
String raw = (String) DataManager.getConfigOrDefault(format, " %n §7→§r %m"); String raw = (String) DataManager.getConfigOrDefault(format, " %n §7→§r %m");
String formatted = raw.replace("%n", name).replace("%m", message); String formatted = raw.replace("%n", name).replace("%m", message);
Utils.broadcast("", ChatAPI.colorify(sender, formatted), wrap(ModuleLoader.exists("Ignore") ? Ignore.getIgnoredBy(sender) : null, event)); Utils.broadcast("", ChatAPI.colorify(sender, formatted),
wrap(ModuleLoader.exists("Ignore") ? Ignore.getIgnoredBy(sender) : null, event));
return true; return true;
} }

View File

@@ -28,7 +28,7 @@ import net.nemez.chatapi.click.Message;
@Commands(CommandHolderType.String) @Commands(CommandHolderType.String)
@AutoRegisterListener @AutoRegisterListener
@Version(major = 4, minor = 0, revision = 1, compatible = 4) @Version(major = 4, minor = 0, revision = 2, compatible = 4)
public class Mentio implements Module, Listener public class Mentio implements Module, Listener
{ {
private File mentioLocation = new File(Main.plugin.getDataFolder(), "mentio.json"); private File mentioLocation = new File(Main.plugin.getDataFolder(), "mentio.json");