diff options
author | snowleo <schneeleo@gmail.com> | 2012-03-14 03:01:23 +0100 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2012-03-14 03:01:23 +0100 |
commit | 1bfe63da96ca91a736da95a6a82fc2ef747e3228 (patch) | |
tree | 1615d012a5e878e9bf1446cbb70e5ec953ea67f3 /EssentialsProtect | |
parent | b5710769155677daf8b03d72387c038a876d9998 (diff) | |
download | Essentials-1bfe63da96ca91a736da95a6a82fc2ef747e3228.tar Essentials-1bfe63da96ca91a736da95a6a82fc2ef747e3228.tar.gz Essentials-1bfe63da96ca91a736da95a6a82fc2ef747e3228.tar.lz Essentials-1bfe63da96ca91a736da95a6a82fc2ef747e3228.tar.xz Essentials-1bfe63da96ca91a736da95a6a82fc2ef747e3228.zip |
Splitting permissions and ranks (renamed from groups)
Deleted all old permissions handlers, since we fully use superperms now
Diffstat (limited to 'EssentialsProtect')
3 files changed, 3 insertions, 3 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/BlockBreakPermissions.java b/EssentialsProtect/src/com/earth2me/essentials/protect/BlockBreakPermissions.java index 74ebe38dc..b6a74df22 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/BlockBreakPermissions.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/BlockBreakPermissions.java @@ -1,7 +1,7 @@ package com.earth2me.essentials.protect; import com.earth2me.essentials.api.IPermission; -import com.earth2me.essentials.perm.AbstractSuperpermsPermission; +import com.earth2me.essentials.permissions.AbstractSuperpermsPermission; import java.util.EnumMap; import java.util.Locale; import java.util.Map; diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/BlockPlacePermissions.java b/EssentialsProtect/src/com/earth2me/essentials/protect/BlockPlacePermissions.java index 23ce7e053..00f7d6c4e 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/BlockPlacePermissions.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/BlockPlacePermissions.java @@ -1,7 +1,7 @@ package com.earth2me.essentials.protect; import com.earth2me.essentials.api.IPermission; -import com.earth2me.essentials.perm.AbstractSuperpermsPermission; +import com.earth2me.essentials.permissions.AbstractSuperpermsPermission; import java.util.EnumMap; import java.util.Locale; import java.util.Map; diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/ItemUsePermissions.java b/EssentialsProtect/src/com/earth2me/essentials/protect/ItemUsePermissions.java index 258a93761..7cd147aee 100644 --- a/EssentialsProtect/src/com/earth2me/essentials/protect/ItemUsePermissions.java +++ b/EssentialsProtect/src/com/earth2me/essentials/protect/ItemUsePermissions.java @@ -1,7 +1,7 @@ package com.earth2me.essentials.protect; import com.earth2me.essentials.api.IPermission; -import com.earth2me.essentials.perm.AbstractSuperpermsPermission; +import com.earth2me.essentials.permissions.AbstractSuperpermsPermission; import java.util.EnumMap; import java.util.Locale; import java.util.Map; |