mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2025-02-11 19:09:11 +00:00
Merge pull request #148 from Wilee999/patch-5
Fix /invis smite bug where it spammed the smite message each player.
This commit is contained in:
commit
92d7c58957
1 changed files with 1 additions and 1 deletions
|
@ -22,6 +22,7 @@ public class Command_invis extends TFM_Command
|
||||||
{
|
{
|
||||||
if (args[0].equalsIgnoreCase("smite"))
|
if (args[0].equalsIgnoreCase("smite"))
|
||||||
{
|
{
|
||||||
|
TFM_Util.adminAction(sender.getName(), "Smiting all invisible players", true);
|
||||||
smite = true;
|
smite = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -40,7 +41,6 @@ public class Command_invis extends TFM_Command
|
||||||
players.add(player.getName());
|
players.add(player.getName());
|
||||||
if (smite && !TFM_SuperadminList.isUserSuperadmin(player))
|
if (smite && !TFM_SuperadminList.isUserSuperadmin(player))
|
||||||
{
|
{
|
||||||
TFM_Util.adminAction(sender.getName(), "Smiting all invisible players", true);
|
|
||||||
player.setHealth(0.0);
|
player.setHealth(0.0);
|
||||||
smites++;
|
smites++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue