summaryrefslogtreecommitdiffstats
path: root/EssentialsGroupManager/src/org/anjocaido/groupmanager
Commit message (Collapse)AuthorAgeLines
* Force remove player attachments on disconnect, and tidyup during playerElgarL2012-04-01-1/+38
| | | join in case of any errors. Fixes a bug of losing permissions.
* Catch errors caused by bad indentation in yml's.ElgarL2012-03-29-203/+215
|
* Stop attempting to push empty permissions when players edit the yml'sElgarL2012-03-29-4/+20
| | | incorrectly.
* Auto rename all case sensitive world folders to lower case (ifElgarL2012-03-26-2/+22
| | | possible).
* Treat all world names as lower case for file handling (please check inElgarL2012-03-26-18/+26
| | | | your worlds folder. You should have no folders with upper case letters from now).
* Correct GrammarElgarL2012-03-22-1/+1
|
* Removed Portuguese text, and added English replacements. Made more sense of ↵Michael Bonney2012-03-21-153/+153
| | | | the sentences, and also changed an incorrect message to it's proper form.
* Don't remove an attachment on a player leaving as Bukkit never forgetsElgarL2012-03-17-35/+3
| | | | it. This fixes non mirrored permissions being messed up if a player relogs.
* Removed some debug spam.ElgarL2012-03-17-1/+0
|
* change []<> for optional command componentsElgarL2012-03-06-1/+1
|
* Expanded '/manuadd'to accept an optional variable for the world (egElgarL2012-03-06-32/+54
| | | '/manuadd <player> <group> <world>').
* Better reporting when a users.yml is failing to load.ElgarL2012-03-04-1/+6
|
* Fix a silly logic error when testing bukkit permsElgarL2012-03-03-2/+2
|
* Minor optimization when checking bukkit permissions.ElgarL2012-03-03-5/+3
|
* Make 'manload' reload the config correctly.ElgarL2012-02-28-9/+9
|
* Prevent promoting players to, and demoting to GlobalGroups.ElgarL2012-02-25-0/+28
|
* Prevent adding inheritances to globalgroups. These are permissionsElgarL2012-02-25-29/+54
| | | collections, not player groups.
* Removed BukkitPermsOverride as this is now the default with bukkitElgarL2012-02-21-3/+0
| | | handling child nodes.
* Update for Bukkit R5 compatability.ElgarL2012-02-21-3/+0
| | | Removed some unused variables.
* Merge branch 'refs/heads/groupmanager'snowleo2012-02-21-56/+28
|\
| * A command of '/manload' with no world arguments now performs a fullElgarL2012-02-18-33/+21
| | | | | | reload of GM.
| * comment name changeElgarL2012-02-15-1/+1
| |
| * Depreciate PlayerTeleportEvent, PlayerRespawnEvent and PlayerPortalEventElgarL2012-02-15-14/+6
| | | | | | | | | | as it's all handled in PlayerChangedWorldEvent. This also means we no longer update permissions before we change worlds.
| * Depreciate PlayerTeleportEvent as it's all handled inElgarL2012-02-14-9/+1
| | | | | | PlayerChangedWorldEvent.
* | Updated Essentials to work with R5snowleo2012-02-21-6/+6
|/
* Change Service registration to register WorldsHolder instead ofElgarL2012-02-11-1/+1
| | | AnjoPermissionsHandler. This is the correct entry point for all data.
* Add some commentingElgarL2012-02-05-36/+12
|
* Fix world mirroring so it correctly creates data files and data sourcesElgarL2012-02-05-76/+213
| | | | | for partially mirrored worlds. Fixed world mirroring so it returns the correct data for the requested world
* Prevent getAllPlayersPermissions() processing a group more than once.ElgarL2012-02-02-18/+25
| | | Improves performance when using complex inheritance structures.
* fix setGroup to only block superperms update if update is false.ElgarL2012-02-02-2/+2
|
* Fix a bug with getWorldData return the main world data for all mirrors,ElgarL2012-02-02-2/+13
| | | instead of the worlds parent data.
* Catch all errors in badly formatted groups.ElgarL2012-01-31-5/+6
|
* Track the 'onPlayerChangeWorld' event as some teleports seem to not beElgarL2012-01-30-0/+6
| | | triggering a world move.
* Auto sort permissions on load to speed up population of superperms.ElgarL2012-01-30-30/+47
| | | | | | | | | Negating a parent node after adding all nodes with * will now correctly remove all child nodes of that parent before populating superperms. eg. - '*' - -vanish.* - vanish.standard
* Fix players retaining permissions when demoted.ElgarL2012-01-29-24/+22
|
* fix for an iterator error if there is only one element in the array.ElgarL2012-01-28-2/+3
|
* Fixed a bug when pushing superperms in the wrong order.ElgarL2012-01-28-84/+61
|
* Properly fix inherited negated nodes.ElgarL2012-01-27-4/+5
|
* do not allow inherited permissions to negate higher perms.ElgarL2012-01-27-2/+6
|
* Fixed an infinite loop error when using '/manudel' on a logged inElgarL2012-01-25-2/+11
| | | | player. It caused setDefaultGroup to trigger a bukkit update when no GM User existed yet.
* Trap errors in fetching the mirrors map.ElgarL2012-01-25-3/+6
|
* Check for a null player object in the PlayerTeleportEvent.ElgarL2012-01-25-1/+1
|
* Fixed subgroups (I broke earlier).ElgarL2012-01-25-9/+15
|
* Fix trying to modify an unmodifiable collection breaking superperms.ElgarL2012-01-25-30/+31
|
* Allow negations with the * permission node when population superperms.ElgarL2012-01-24-5/+7
|
* Fix hasOwnData to return a correct result with new mirroring systemElgarL2012-01-24-1/+1
|
* Fixed isInListElgarL2012-01-24-1/+1
|
* addSubGroup now returns a boolean for success/failure.ElgarL2012-01-24-13/+19
| | | | '/manuaddsub' now correctly reports if it was able to add the sub group.
* Added recursive loop detection for World mirroring (you may not set theElgarL2012-01-24-43/+42
| | | | | | main world as a mirror of another). Fixed fetching world data so it no longer returns the mirrored world for groups. Each world data holder now points to the correct data set, so can be returned as an object.
* Fixed infinite loop error on player join.ElgarL2012-01-22-8/+15
| | | | Optimized code to only update the player logging in instead of all players online.