From 39a54a8e314800b9cefa62d6c5dd01693791f9c2 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Fri, 23 Dec 2016 23:31:05 +0000 Subject: [PATCH] Added admin invul command missing message dots. --- .../scripts/handlers/admincommandhandlers/AdminInvul.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/L2J_Mobius_Underground/dist/game/data/scripts/handlers/admincommandhandlers/AdminInvul.java b/L2J_Mobius_Underground/dist/game/data/scripts/handlers/admincommandhandlers/AdminInvul.java index e3bd45d0d5..e0b48d8b99 100644 --- a/L2J_Mobius_Underground/dist/game/data/scripts/handlers/admincommandhandlers/AdminInvul.java +++ b/L2J_Mobius_Underground/dist/game/data/scripts/handlers/admincommandhandlers/AdminInvul.java @@ -85,7 +85,7 @@ public class AdminInvul implements IAdminCommandHandler if (activeChar.isInvul()) { activeChar.setIsInvul(false); - text = activeChar.getName() + " is now mortal"; + text = activeChar.getName() + " is now mortal."; if (Config.DEBUG) { _log.finer("GM: Gm removed invul mode from character " + activeChar.getName() + "(" + activeChar.getObjectId() + ")"); @@ -94,7 +94,7 @@ public class AdminInvul implements IAdminCommandHandler else { activeChar.setIsInvul(true); - text = activeChar.getName() + " is now invulnerable"; + text = activeChar.getName() + " is now invulnerable."; if (Config.DEBUG) { _log.finer("GM: Gm activated invul mode for character " + activeChar.getName() + "(" + activeChar.getObjectId() + ")"); @@ -109,7 +109,7 @@ public class AdminInvul implements IAdminCommandHandler if (activeChar.isUndying()) { activeChar.setUndying(false); - text = activeChar.getName() + " is now mortal"; + text = activeChar.getName() + " is now mortal."; if (Config.DEBUG) { _log.finer("GM: Gm removed undying mode from character " + activeChar.getName() + "(" + activeChar.getObjectId() + ")"); @@ -118,7 +118,7 @@ public class AdminInvul implements IAdminCommandHandler else { activeChar.setUndying(true); - text = activeChar.getName() + " is now undying"; + text = activeChar.getName() + " is now undying."; if (Config.DEBUG) { _log.finer("GM: Gm activated undying mode for character " + activeChar.getName() + "(" + activeChar.getObjectId() + ")");