summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeLines
* Add API for getting and setting experience for BlockBreakEvent. Addresses ↵feildmaster2012-08-08-3/+30
| | | | BUKKIT-2033
* Add spaces to gamemode message. Fixes BUKKIT-2148feildmaster2012-08-08-2/+2
|
* Purge outdated biomes. Fixes BUKKIT-1087Wesley Wolfe2012-08-07-6/+0
|
* Add Warning API and settings for Deprecated eventsWesley Wolfe2012-08-07-6/+126
|
* Don't send duplicate messages for Gamemode and Time commands.feildmaster2012-08-06-4/+0
| | | | Gamemode gets sent with the packet.
* Update commands to match 1.3 vanilla commandsfeildmaster2012-08-06-20/+39
|
* Fail silently on incorrect number inputfeildmaster2012-08-06-3/+3
|
* Change inheritance for new MaterialData.Wesley Wolfe2012-08-05-53/+82
|
* [Bleeding] Add new MaterialData classes for new blocks and update existing ↵Mike Primm2012-08-05-21/+640
| | | | blocks with new data
* BREAKING: replace defunct PlayerChatEvent with async chat. Addresses BUKKIT-2064Wesley Wolfe2012-08-03-3/+241
| | | | | | | | | | | | | | | | | | | | | PlayerChatEvent is now Deprecated. It should be fired asynchronously, but has not been so traditionally. To do so would massively break plugins that rely on it. AsyncPlayerChatEvent now replaces PlayerChatEvent. It uses comparable functionality, but can be fired without synchronizing to the event manager. The event will sometimes fire synchronously if triggered by a plugin. Because PlayerChatEvent is now deprecated, PlayerCommandPreprocessEvent will no longer extend PlayerChatEvent. This is almost completely source and binary compatible, bar plugins that downcast to PlayerChatEvent. Additionally, some methods that are non-functional have been marked deprecated and indicate such. Additionally, new constructors are now provided to allow for lazier initialization of the receiving player set. A note has been added stating plugins should be prepared for UnsupportedOperationExceptions if the caller provides an unmodifiable collection.
* Warn server owners of plugins using deprecated events. Fixes BUKKIT-2027Wesley Wolfe2012-08-02-0/+20
|
* Test command permissions before running them.Travis Watkins2012-08-02-0/+2
|
* Revive the toggledownfall permission! (and fix descriptions)feildmaster2012-08-02-2/+3
|
* Add LargeBiomes WorldType.feildmaster2012-08-02-1/+2
|
* Update Bukkit for 1.3.1 changesfeildmaster2012-08-02-142/+409
|
* Add API to get a players experience to level (getExpToLevel). Implements ↵feildmaster2012-07-11-0/+11
| | | | | | BUKKIT-1906 This is the total experience one needs to gain a level.
* Implement server.getMotd() for BUKKIT-1799feildmaster2012-07-04-0/+11
|
* Don't "setLastDamageCause" in the DamageEvent constructor. Addresses BUKKIT-1881feildmaster2012-07-03-7/+1
| | | | This is now done after the event to allow you to be able to get previous damageCauses, and is now only applied if the event is not canceled.
* Add an isValid() method to Entity. Addresses BUKKIT-810TomyLobo2012-06-28-0/+11
|
* Add check for existing config file. Addresses BUKKIT-1851Wesley Wolfe2012-06-28-1/+4
|
* Add LivingEntity.hasLineOfSight. Addresses BUKKIT-1255TomyLobo2012-06-23-0/+13
|
* Deprecate spawnCreature and add spawnEntity. Addresses BUKKIT-1168V10lator2012-06-23-0/+11
|
* Add plugin channel events. Addresses BUKKIT-1844Wesley Wolfe2012-06-21-0/+56
|
* Add PlayerItemBreakEvent. Addresses BUKKIT-1600Travis Ralston2012-06-21-0/+38
|
* Revert "Shift plugin initialization; Addresses BUKKIT-1788"Wesley Wolfe2012-06-16-37/+4
| | | | | This reverts commit 27cb5e7c9c6b2cfc5419262df75d89bc6bfe7879. Issues were discovered with shared class loaders.
* Shift plugin initialization; Addresses BUKKIT-1788Wesley Wolfe2012-06-15-4/+37
|
* Add NotePlayEvent. Fixes BUKKIT-1779obnoxint2012-06-14-0/+82
|
* Add asynchronous pre-login event; Addresses BUKKIT-1213Wesley Wolfe2012-06-13-0/+108
|
* Support asynchronous events; Addresses BUKKIT-1212Wesley Wolfe2012-06-13-27/+300
|
* Add PlayerToggleFlightEvent. Fixes BUKKIT-1696H31IX2012-06-13-0/+45
|
* Check for non-existent class alias; Fixes BUKKIT-1780Wesley Wolfe2012-06-09-3/+5
|
* Javadoc updatesfeildmaster2012-06-03-211/+232
| | | | Fixes BUKKIT-1653, Fixes BUKKIT-1383 and Fixes BUKKIT-1644
* Change logger references to explicitly use plugin loggerWesley Wolfe2012-05-26-3/+3
|
* Reverse disable order; Addresses BUKKIT-1389Wesley Wolfe2012-05-26-2/+3
|
* Make class loader preference predictable; Fixes BUKKIT-1591Wesley Wolfe2012-05-25-1/+2
|
* Use existing function to get opposite block faceAcrobot2012-05-25-28/+3
|
* Add getName() to AnimalTamerWesley Wolfe2012-05-24-1/+7
|
* Optimize ChatColor.getLastColors.Travis Watkins2012-05-16-10/+22
| | | | | | | | ChatColor searches from the start to the end of a string for chat format characters but this always has to search the entire string. By starting from the end of the string and working backwards we can stop searching once we find a color code or a reset code as any previous formatting is wiped out by these.
* Add IgniteCause.FIREBALL for BUKKIT-1566Travis Watkins2012-05-09-0/+4
|
* Set help index page to 1 for invalid numbers. Fixes BUKKIT-1569feildmaster2012-04-30-17/+33
|
* Making MemorySection much more efficient; Addresses BUKKIT-1454Wesley Wolfe2012-04-30-386/+137
|
* Made clearPermissions public. Addresses BUKKIT-1541feildmaster2012-04-27-1/+1
|
* We default to OPfeildmaster2012-04-27-1/+4
|
* Add API for managing mob spawn limits per-world. Fixes BUKKIT-1565Travis Watkins2012-04-23-0/+72
|
* Adding ceil to NumberConversionsWesley Wolfe2012-04-15-0/+5
|
* Add SpawnReason.DEFAULT, to make SpawnReason.CUSTOM solely for pluginsfeildmaster2012-04-14-2/+6
|
* Added SpawnReason.SLIME_SPLIT. Addresses BUKKIT-790feildmaster2012-04-14-0/+4
|
* Fix createSection getting sections from itself. Fixes BUKKIT-1513feildmaster2012-04-14-1/+22
|
* Adds address to PlayerLoginEvent; Addresses BUKKIT-431Wesley Wolfe2012-04-03-4/+56
| | | | | This also deprecates old constructors left for compatibility. Address will default to null in these cases.
* Removed pointless counter and use .length in PluginsCommand. Thanks nallar!EvilSeph2012-04-02-3/+1
|