Travis Watkins
103ead4346
[Bleeding] Added Vanish API for hiding players from each other.
...
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.
2012-02-03 03:32:21 -05:00
Jeremy Wood
4e92f59d4c
Added entity type IDs as per vanilla spec.
2012-02-03 02:07:05 -05:00
starrynte
46284565a7
Fixed casting in ItemStack.deserialize.
2012-02-03 01:54:00 -05:00
Nathan Adams
94e561ce50
onEnable and onDisable are no longer required implementations for JavaPlugins
2012-02-01 01:53:56 +00:00
EvilSeph
7db4bd3336
Fixed comment from earlier commit.
2012-01-29 13:10:51 -05:00
Eric Stokes
33dd7cd0c7
Added 'generate-structure' setting support and WorldCreator property.
...
Fixes BUKKIT-655 and BUKKIT-592
2012-01-29 13:06:23 -05:00
EvilSeph
24f5cb0b5c
Added useExactLoginLocation(). Closes BUKKIT-145
...
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.
2012-01-29 12:31:59 -05:00
Erik Broes
9c0f2f6d38
Add some testing
2012-01-29 11:17:44 +01:00
EvilSeph
6160de9c28
Cleanup.
2012-01-27 18:23:27 -05:00
EvilSeph
0a0fee8be2
Fixed plugin loader. Thanks Wolvereness!
2012-01-25 04:11:37 -05:00
EvilSeph
e2d27670cf
Adhere to naming conventions.
2012-01-25 02:10:02 -05:00
EvilSeph
6e754de221
This will be re-added after the RB.
2012-01-25 02:08:00 -05:00
Mike Primm
1a9118f8d2
[Bleeding] Added EnchantmentTable API.
2012-01-24 06:13:48 -05:00
Zeerix
2b9c374865
[Bleeding] Added PotionSplashEvent for splash potions. Closes BUKKIT-307
2012-01-24 02:11:38 -05:00
EvilSeph
45f02a5c33
Added spacing to BanListCommand output.
2012-01-23 20:30:21 -05:00
Aidan Matzko
3a7c82f7cd
[Bleeding] Added Sheep, Shear and EntityChangeBlock API. Thanks tips48! Closes BUKKIT-512
2012-01-23 18:57:37 -05:00
Tahg
53261190cf
Updated timing code for new event system
2012-01-19 18:41:04 -05:00
Nathan Adams
c82666738f
Added new PlayerExpChangeEvent and PlayerLevelChangeEvent events. Thanks to feildmaster for the PR.
2012-01-19 16:07:03 +00:00
Nathan Adams
d83c2e17ec
Player.setPlayerListName no longer ignores colour length in size limit. This relates to BUKKIT-571
2012-01-19 15:10:14 +00:00
Erik Broes
792d2601e6
Use the type of the eventhandler method's parameter as type rather than specificing it. Thanks zml2008.
2012-01-19 08:13:49 +01:00
zml2008
a4ff34607b
Added a default to EventHandler.priority()
...
Fixed HandlerList.unregisterAll()
Fixed incorrect isAssignableFrom check in SimplePluginManager.getRegistrationClass()
2012-01-18 14:46:15 +01:00
Erik Broes
a210df5d52
Add Player.setBedSpawnLocation(Location). Thanks md_5
2012-01-17 22:43:16 +01:00
Erik Broes
0062c83d81
Minor cleanup
2012-01-17 19:51:27 +01:00
Erik Broes
d57776f058
[Bleeding] Added EntityShootBowEvent. Thanks Zeerix.
2012-01-17 19:51:11 +01:00
Erik Broes
4d7a141a33
[Bleeding] Add BrewingStand API. Thanks N3X15 & md_5
2012-01-17 19:50:23 +01:00
Zeerix
fb45b3295b
[Bleeding] Added DamageCause.POISON/MAGIC and RegainReason.MAGIC/MAGIC_REGEN for potions
2012-01-17 19:49:06 +01:00
Zeerix
7c7e78b914
[Bleeding] Added Block.breakNaturally and Block.getDrops
2012-01-17 19:48:36 +01:00
Nathan Adams
e35037ab50
[Bleeding] Changed event system into a new, much faster design. Huge thanks to @zml2008 & @lahwran.
2012-01-17 19:46:22 +01:00
Mike Primm
5c8bc62f26
[Bleeding] Added Block.getLightFromSky and getLightFromBlocks
2012-01-17 19:45:47 +01:00
rmichela
05173f2200
[Bleeding] Added Plugin.getLogger() which returns a java.util.Logger that prefixes messages with the plugin name.
...
Note: the server when enabling or disabling a plugin will now by default log this.
2012-01-17 19:45:36 +01:00
Mike Primm
cd30d470e7
[Bleeding] Added: <T extends Entity> Collection<T> World.getEntitiesByClass(Class<T>... classes)
2012-01-17 19:44:41 +01:00
Erik Broes
992fa6d039
[Bleeding] Add Animals: setAgeLock(bool), bool getAgeLock, void setBaby, void setAdult, void setBreed(bool), bool canBreed and bool isAdult.
2012-01-17 19:44:18 +01:00
Nathan Adams
5ace5adc62
Fixed incorrect value for ChatColor.BLACK (was 1, should be 0)
2012-01-16 19:49:16 +00:00
Nathan Adams
c72c570d77
Added ChatColor.MAGIC, changed to char based values and deprecated old methods. Added unit tests for ChatColor
2012-01-16 19:38:08 +00:00
Nathan Adams
dba43691ca
Added a World.getWorldType() method
2012-01-15 17:43:53 +00:00
Erik Broes
eb9dc64493
Generic cleaning
2012-01-15 14:37:43 +01:00
Nathan Adams
78cc950c50
Added "class-loader-of" field to plugin.yml. Big thanks to CmdrDats for the PR.
2012-01-15 12:54:06 +00:00
Nathan Adams
b2364780cb
Added an EntityCreatePortalEvent
2012-01-15 11:58:03 +00:00
Nathan Adams
0023c705eb
Configurations now properly support lists of serializable objects, and ItemStack is properly serializable. Big thanks to GICodeWarrior for the PR. This fixes BUKKIT-425
2012-01-15 11:15:58 +00:00
Nathan Adams
c84c5a2132
Added Player set/getAllowFlight methods. Thanks to Qala for the PR.
2012-01-15 10:55:33 +00:00
Nathan Adams
77bcae7419
Fixed typo in Event javadoc, thanks to robin0van0der0v for the PR
2012-01-15 10:43:42 +00:00
Nathan Adams
dae33a62c9
ItemStack.getMaxStackSize no longer incorrectly returns -1 when not backed by an NMS instance. Thanks to feildmaster for the PR. This fixes BUKKIT-530
2012-01-15 10:00:27 +00:00
Nathan Adams
38601bfd28
Changed Material to use an array for lookups, instead of a hashmap. Thanks to zml2008 for the PR
2012-01-15 09:18:20 +00:00
Nathan Adams
03de75c5b9
Added EntityBlockFormEvent for block forming by entity actions (snowmen etc). Thanks to fieldmaster for the PR.
2012-01-15 09:13:00 +00:00
Nathan Adams
ab69fdd29f
Config .get*List will return an empty list of the appropriate type instead of null when the value does not exist. Thanks to krinsdeath for the PR.
2012-01-15 09:04:08 +00:00
Feildmaster
ec2ccae979
Don't send events to disabled plugins.
2012-01-15 08:18:44 +00:00
Nathan Adams
e9d96383f4
Changed PluginDisableEvent to fire before the disabling of a plugin, instead of after (where it's then invalid). Thanks to holic for the PR.
2012-01-15 08:16:57 +00:00
Nathan Adams
3a89a0b643
Fixed documentation of getNearbyEntities in Entity. Thanks to epuidokas for the PR.
2012-01-15 07:38:14 +00:00
Nathan Adams
c6ea04c807
Fixed Leaves.getSpecies returning null on higher data values. Thanks to Wolvereness for the PR.
2012-01-15 07:33:02 +00:00
Nathan Adams
44217678e6
Added new methods to set a players respawned level/exp/totalExp in PlayerDeathEvent. Thanks to Feildmaster for the PR.
2012-01-14 17:54:03 +00:00