mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-24 11:36:11 +01:00
Fixed /god not working for others.
This commit is contained in:
parent
962394b2ba
commit
5be31ebb5c
@ -1,5 +1,6 @@
|
|||||||
3.0b2:
|
3.0b2:
|
||||||
- Fixed issue where built-in permissions were not (re)loaded.
|
- Fixed issue where built-in permissions were not (re)loaded.
|
||||||
|
- Fixed /god not working for others.
|
||||||
|
|
||||||
3.0b1:
|
3.0b1:
|
||||||
- Added parent-child relationships to regions.
|
- Added parent-child relationships to regions.
|
||||||
|
@ -484,7 +484,7 @@ private boolean handleCommand(Player player, String cmd, String[] args)
|
|||||||
checkArgs(args, 0, 1);
|
checkArgs(args, 0, 1);
|
||||||
|
|
||||||
// Allow setting other people invincible
|
// Allow setting other people invincible
|
||||||
if (args.length > 1) {
|
if (args.length > 0) {
|
||||||
if (!hasPermission(player, "/godother")) {
|
if (!hasPermission(player, "/godother")) {
|
||||||
player.sendMessage(ChatColor.RED + "You don't have permission to make others invincible.");
|
player.sendMessage(ChatColor.RED + "You don't have permission to make others invincible.");
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user