[Version 0.7.4.2]
- stargate.create.personal permission now also allows user to use personal gates
This commit is contained in:
@ -381,6 +381,8 @@ public class Stargate extends JavaPlugin {
|
||||
}
|
||||
// Can access this network
|
||||
if (hasPerm(player, "stargate.network." + network)) return true;
|
||||
// Is able to create personal gates (Assumption is made they can also access them)
|
||||
if (network.equals(player.getName()) && hasPerm(player, "stargate.create.personal")) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
name: Stargate
|
||||
main: net.TheDgtl.Stargate.Stargate
|
||||
version: 0.7.4.1
|
||||
version: 0.7.4.2
|
||||
description: Stargate mod for Bukkit
|
||||
author: Drakia
|
||||
website: http://www.thedgtl.net
|
||||
|
Reference in New Issue
Block a user