Merge pull request #265 from DragonSlayer2189/patch-3

added "banned (user) quietly" message
This commit is contained in:
CoolJWB 2020-08-18 09:29:14 +02:00 committed by GitHub
commit ea946fe14f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,7 +104,10 @@ public class Command_ban extends FreedomCommand
}
}
}
else
{
msg("Banned " + player.getName() + " quietly.");
}
// Kill player
player.setHealth(0.0);
}
@ -172,4 +175,4 @@ public class Command_ban extends FreedomCommand
return true;
}
}
}