summaryrefslogtreecommitdiffstats
path: root/src/main
Commit message (Collapse)AuthorAgeLines
* [Bleeding] Added Potions API. Fixes BUKKIT-389fullwall2012-02-10-1/+755
|
* Added configurable animal and monster ticks per spawn setting.EvilSeph2012-02-10-0/+122
|
* Added JOCKEY and CHUNK_GEN SpawnReasons.EvilSeph2012-02-10-0/+8
|
* [Bleeding] setLastDamageCaused to ComplexEntityPart parent.Feildmaster2012-02-09-1/+6
|
* [Bleeding] Add the ability for plugins to ignore cancelled events whenmd_52012-02-09-95/+100
| | | | using the new event system.
* [Bleeding] Deprecate Enderman events in favor of EntityChangeBlockAidan Matzko2012-02-09-0/+10
|
* [Bleeding] Implemented customizable permission messages.Wesley Wolfe2012-02-09-1/+34
|
* Properly unregister plugin channels when a plugin gets disabled.Meaglin2012-02-09-0/+7
|
* Added EntityTeleportEvent. Fixes BUKKIT-366craftycreeper2012-02-09-0/+85
|
* Added SpawnReason.BUILD_SNOWMAN.EvilSeph2012-02-08-0/+4
|
* Added RegainReason.ENDER_CRYSTAL.EvilSeph2012-02-08-0/+4
|
* setCancelled should probably not be hard-coded to true or it could putEvilSeph2012-02-05-1/+1
| | | | fernferrets in danger of self-implosion.
* Added Spawner Egg support to CreatureSpawnEvent.EvilSeph2012-02-05-0/+4
|
* [Bleeding] Added Vanish API for hiding players from each other.Travis Watkins2012-02-03-1/+28
| | | | | | | Adds Player.hidePlayer, Player.showPlayer, and Player.canSee for managing what players are hidden from a player. When someone is hidden from a player the player cannot see them in the user list or /list and they cannot /tell them so they appear to be completely gone from the server.
* Added entity type IDs as per vanilla spec.Jeremy Wood2012-02-03-29/+45
|
* Fixed casting in ItemStack.deserialize.starrynte2012-02-03-3/+3
|
* onEnable and onDisable are no longer required implementations for JavaPluginsNathan Adams2012-02-01-2/+5
|
* Fixed comment from earlier commit.EvilSeph2012-01-29-1/+1
|
* Added 'generate-structure' setting support and WorldCreator property.Eric Stokes2012-01-29-0/+28
| | | | Fixes BUKKIT-655 and BUKKIT-592
* Added useExactLoginLocation(). Closes BUKKIT-145EvilSeph2012-01-29-0/+10
| | | | | | | | useExactLoginLocation() looks for settings.use-exact-login-location within bukkit.yml. If true, we will bypass Vanilla's behaviour of checking for collisions and moving the player if needed when they login. If false, we will continue to follow Vanilla's behaviour and move players that 'collide' with objects when they login.
* Add some testingErik Broes2012-01-29-232/+360
|
* Cleanup.EvilSeph2012-01-27-2/+2
|
* Fixed plugin loader. Thanks Wolvereness!EvilSeph2012-01-25-107/+243
|
* Adhere to naming conventions.EvilSeph2012-01-25-4/+4
|
* This will be re-added after the RB.EvilSeph2012-01-25-6/+0
|
* [Bleeding] Added EnchantmentTable API.Mike Primm2012-01-24-0/+196
|
* [Bleeding] Added PotionSplashEvent for splash potions. Closes BUKKIT-307Zeerix2012-01-24-0/+99
|
* Added spacing to BanListCommand output.EvilSeph2012-01-23-1/+1
|
* [Bleeding] Added Sheep, Shear and EntityChangeBlock API. Thanks tips48! ↵Aidan Matzko2012-01-23-2/+232
| | | | Closes BUKKIT-512
* Updated timing code for new event systemTahg2012-01-19-33/+169
|
* Added new PlayerExpChangeEvent and PlayerLevelChangeEvent events. Thanks to ↵Nathan Adams2012-01-19-3/+135
| | | | feildmaster for the PR.
* Player.setPlayerListName no longer ignores colour length in size limit. This ↵Nathan Adams2012-01-19-1/+0
| | | | relates to BUKKIT-571
* Use the type of the eventhandler method's parameter as type rather than ↵Erik Broes2012-01-19-7/+16
| | | | specificing it. Thanks zml2008.
* Added a default to EventHandler.priority()zml20082012-01-18-3/+5
| | | | | Fixed HandlerList.unregisterAll() Fixed incorrect isAssignableFrom check in SimplePluginManager.getRegistrationClass()
* Add Player.setBedSpawnLocation(Location). Thanks md_5Erik Broes2012-01-17-0/+16
|
* Minor cleanupErik Broes2012-01-17-5/+10
|
* [Bleeding] Added EntityShootBowEvent. Thanks Zeerix.Erik Broes2012-01-17-0/+94
|
* [Bleeding] Add BrewingStand API. Thanks N3X15 & md_5Erik Broes2012-01-17-0/+21
|
* [Bleeding] Added DamageCause.POISON/MAGIC and RegainReason.MAGIC/MAGIC_REGEN ↵Zeerix2012-01-17-0/+20
| | | | for potions
* [Bleeding] Added Block.breakNaturally and Block.getDropsZeerix2012-01-17-1/+34
|
* [Bleeding] Changed event system into a new, much faster design. Huge thanks ↵Nathan Adams2012-01-17-222/+1688
| | | | to @zml2008 & @lahwran.
* [Bleeding] Added Block.getLightFromSky and getLightFromBlocksMike Primm2012-01-17-0/+18
|
* [Bleeding] Added Plugin.getLogger() which returns a java.util.Logger that ↵rmichela2012-01-17-3/+62
| | | | | | prefixes messages with the plugin name. Note: the server when enabling or disabling a plugin will now by default log this.
* [Bleeding] Added: <T extends Entity> Collection<T> ↵Mike Primm2012-01-17-0/+8
| | | | World.getEntitiesByClass(Class<T>... classes)
* [Bleeding] Add Animals: setAgeLock(bool), bool getAgeLock, void setBaby, ↵Erik Broes2012-01-17-0/+45
| | | | void setAdult, void setBreed(bool), bool canBreed and bool isAdult.
* Fixed incorrect value for ChatColor.BLACK (was 1, should be 0)Nathan Adams2012-01-16-1/+1
|
* Added ChatColor.MAGIC, changed to char based values and deprecated old ↵Nathan Adams2012-01-16-20/+59
| | | | methods. Added unit tests for ChatColor
* Added a World.getWorldType() methodNathan Adams2012-01-15-0/+7
|
* Generic cleaningErik Broes2012-01-15-235/+209
|
* Added "class-loader-of" field to plugin.yml. Big thanks to CmdrDats for the PR.Nathan Adams2012-01-15-1/+26
|