summaryrefslogtreecommitdiffstats
path: root/EssentialsSpawn
Commit message (Collapse)AuthorAgeLines
...
* BedLocationFix for CraftBukkitsnowleo2011-11-27-2/+3
|
* New behavior of the /home command and bedssnowleo2011-11-26-16/+13
| | | | | | | | | | | - The behavior has been altered to match the vanilla server. - Using a bed will no longer create a home in the users file, if config option bed-sethome is set - The config option bed-sethome has been removed - It's now possible to go to /home bed or /home playername:bed - Bed locations stored before installing Essentials will be used - Players respawn at their bed location (if set) instead of the spawn, if respawn-at-home is set to false - The default value of spawn-if-no-home is set to true - If spawn-if-no-home is set and the player has not set a home, he will be either teleported to his bed location (if set) or the spawn, when he uses the /home command
* Switch to the new I18n class and format cleanup of all classessnowleo2011-11-21-10/+11
|
* CB# 1467 B#1022snowleo2011-11-20-2/+2
|
* Prevent that hidden players broadcast afk messagessnowleo2011-09-02-1/+1
| | | | Prevent that moving players triggers unafk too early, they can now move within a radius of 3 blocks from the position where they went afk.
* Forgot this onesnowleo2011-08-27-1/+0
|
* Allow the use of the world spawn in EssentialsSpawn for new players.snowleo2011-08-11-10/+13
|
* Changes to build-impl by Netbeanssnowleo2011-08-08-3/+4
|
* Correcting all line endings to LFsnowleo2011-07-24-91/+91
|
* Added code guidelines to all projects, so we don't need them globally.snowleo2011-07-24-5/+40
| | | | | | | Compress jar files Don't copy lib files into dist folders Removed vendor names Changed all java versions to 1.6 to make it consistent.
* Revert to correct class loadersnowleo2011-07-16-1/+1
|
* Heavy cleanup of all classessnowleo2011-07-16-29/+30
| | | | | ItemDb is not static anymore Essentials.getStatic() removed
* Corrected all commands of PermCommandssnowleo2011-06-26-1/+1
| | | | onCommand now supports the change of the permissions prefix
* Renamed the Charge class to Tradesnowleo2011-06-13-2/+2
|
* Fix for Craftbukkit Bug 912snowleo2011-06-12-10/+21
|
* Only import what we really need.snowleo2011-06-07-2/+3
|
* Cleanupsnowleo2011-06-02-1/+0
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1563 e251c2fe-e539-e718-e476-b85c1f46cddb
* Missed some parts for the last commitssnowleo2011-06-01-11/+18
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1555 e251c2fe-e539-e718-e476-b85c1f46cddb
* Refactoring: New Charge classsnowleo2011-05-22-3/+5
| | | | | | | | user.canAfford(String), user.canAfford(EssentialsCommand), user.charge(String), user.charge(EssentialsCommand) have been removed. Teleport class has been changed to use the Charge class. This also fixes some bugs, like the one with warp signs. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1512 e251c2fe-e539-e718-e476-b85c1f46cddb
* Fix /home player for offline playerssnowleo2011-05-15-1/+1
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1497 e251c2fe-e539-e718-e476-b85c1f46cddb
* Missing stuff for /ignoresnowleo2011-05-15-1/+1
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1495 e251c2fe-e539-e718-e476-b85c1f46cddb
* Move Register stuff inside Essentialssnowleo2011-05-13-28/+3
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1454 e251c2fe-e539-e718-e476-b85c1f46cddb
* Add Register as dependency for all projects.snowleo2011-05-13-106/+131
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1453 e251c2fe-e539-e718-e476-b85c1f46cddb
* Make sure, we will never give a null as respawn location.snowleo2011-05-13-1/+5
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1430 e251c2fe-e539-e718-e476-b85c1f46cddb
* Fix player kick if home is not set on respawn.snowleo2011-05-13-1/+6
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1427 e251c2fe-e539-e718-e476-b85c1f46cddb
* Finally get rid of all dependency problems.snowleo2011-05-11-6/+1
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1423 e251c2fe-e539-e718-e476-b85c1f46cddb
* More translation stuff. Translated Spawn, Chat, Protect, GeoIPsnowleo2011-05-10-75/+7
| | | | | | | Protect is only partly translated (sql stuff is not translated) EssentialsSpawn is changed to use the onCommand from Essentials jar, since that is more up to date. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1408 e251c2fe-e539-e718-e476-b85c1f46cddb
* Cleanup of the iConomyBridge Codesnowleo2011-05-02-1/+1
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1321 e251c2fe-e539-e718-e476-b85c1f46cddb
* This is a big refactoring of the user class and more.snowleo2011-05-01-17/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many commands have been cleaned. File changes: - all user data has been moved from users.yml to userdata folder - all files in userdata folder are lower case Both changes should be done automatically. Class changes: - Moved all user data functions to UserData class - Moved all user teleport functions to Teleport class - Moved the user list to Essentials class - Less static functions for better testing - EssentialsCommand now has ess Property (Essentials class) - New NotEnoughArgumentsException, that will show command description and syntax New commands: - /seen, shows the last login or logout - /tempban, temporarily ban someone - /tjail and mute, temporarily option added Other changes: - ban reason is saved - don't show "You have xxx mail" on login, if user doesn't have essentials.mail permission - time will be parsed: years, months (mo), weeks, days, hours, minutes (m), seconds, these can be shortened and combined, example: 2 days 5h 30m git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1300 e251c2fe-e539-e718-e476-b85c1f46cddb
* Updated build-impl by Netbeans 7.0snowleo2011-04-21-1080/+1088
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1246 e251c2fe-e539-e718-e476-b85c1f46cddb
* [trunk] Removed useless loadClasses() method from Essentials.snowleo2011-04-16-3/+0
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1216 e251c2fe-e539-e718-e476-b85c1f46cddb
* [trunk] Remove private directories.snowleo2011-04-01-1/+0
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1055 e251c2fe-e539-e718-e476-b85c1f46cddb
* Updated for CB 602Zenexer2011-03-30-2/+2
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1043 e251c2fe-e539-e718-e476-b85c1f46cddb
* Revert to 1013snowleo2011-03-30-2/+2
| | | | git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1021 e251c2fe-e539-e718-e476-b85c1f46cddb
* 2.1 prerelease, part 2 of 3Zenexer2011-03-30-0/+1495
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk2.1@1015 e251c2fe-e539-e718-e476-b85c1f46cddb