Bukkit/Spigot
07b4fca3ae
Forgot we have windows to support as well
...
By: Erik Broes <erikbroes@grum.nl >
2011-04-03 16:42:33 +02:00
Bukkit/Spigot
434f054e38
A plugin's name can now only contain: [A-Za-z0-9()\[\]{}_.-]
...
By: Erik Broes <erikbroes@grum.nl >
2011-04-03 16:26:27 +02:00
Bukkit/Spigot
0d5f7ece8a
Plugin's datafolders are now named after the plugin's name (from config.yml)
...
The code will automagically rename the old data folder to the new format (if it can)
or else throw a fatal error you better solve :D
By: Erik Broes <erikbroes@grum.nl >
2011-04-03 16:12:44 +02:00
Bukkit/Spigot
22b860367d
Added VEHICLE_DESTROY event
...
By: Robert Sargant <robert@sargant.com >
2011-03-16 13:11:13 +00:00
Bukkit/Spigot
531a69463a
Added the SPAWN_CHANGE event, which occurs when a world's spawn is changed.
...
This event includes the world who's spawn changed and its previous spawn location.
To listen for this event:
PluginManager pm = getServer().getPluginManager();
YourWorldListener worldListener = new YourWorldListener(this);
pm.registerEvent(Event.Type.SPAWN_CHANGE, worldListener, Priority.Normal, this);
To use this event:
public class YourWorldListener extends WorldListener {
@Override
public void onSpawnChange(SpawnChangeEvent event) {
World world = event.getWorld();
Location previousLocation = event.getPreviousLocation();
}
}
By: William Bowers <william.bowers@gmail.com >
2011-03-29 01:59:00 -07:00
Bukkit/Spigot
e7f980d6e9
Added {NAME} replacement in database location
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-04-01 16:51:33 +01:00
Bukkit/Spigot
2870b0e9bc
DDL generation methods
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-04-01 04:48:12 +01:00
Bukkit/Spigot
0373e53844
Implemented ebeans
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-04-01 16:04:43 +01:00
Bukkit/Spigot
9d24880b0e
Fix IIOB error when dealing with an incomplete YAML && Nagging
...
By: Erik Broes <erikbroes@grum.nl >
2011-04-01 10:24:48 +02:00
Bukkit/Spigot
412fb96061
Catch YAML exceptions as InvalidPluginExceptions
...
By: Erik Broes <erikbroes@grum.nl >
2011-04-01 09:59:24 +02:00
Bukkit/Spigot
19ec204cc9
We weren't supposed to break things *that* hard. Plugins still need to update but here's a TEMPORARY fix.
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-31 22:51:26 +01:00
Bukkit/Spigot
5ac485db46
Seal-fail workaround
...
By: lukegb <github@lukegb.com >
2011-03-31 14:16:13 +00:00
Bukkit/Spigot
69973b8617
Just NAG once, to be nice
...
By: Erik Broes <erikbroes@grum.nl >
2011-03-30 00:38:46 +02:00
Bukkit/Spigot
2e99a0f17d
Add 'NagException' to disclose plugin fail
...
By: Erik Broes <erikbroes@grum.nl >
2011-03-30 00:25:11 +02:00
Bukkit/Spigot
8cef9edf82
RegisterInterface reload bug fix
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-29 21:29:46 +01:00
Bukkit/Spigot
c640518469
Change some more signatures :(
...
onPlayerCommandPreprocess(PlayerChatEvent event) -> onPlayerCommandPreprocess(PlayerCommandPreprocessEvent event)
onBlockFlow(BlockFromToEvent event) -> onBlockFromTo(BlockFromToEvent event)
onPlayerJoin(PlayerEvent event) -> onPlayerJoin(PlayerJoinEvent event)
onPlayerQuit(PlayerEvent event) -> onPlayerQuit(PlayerQuitEvent event)
onPlayerTeleport(PlayerMoveEvent event) -> onPlayerTeleport(PlayerTeleportEvent event)
By: Erik Broes <erikbroes@grum.nl >
2011-03-27 00:16:06 +01:00
Bukkit/Spigot
41325be679
Fix some wrong event creations after previous change
...
By: Erik Broes <erikbroes@grum.nl >
2011-03-26 23:19:50 +01:00
Bukkit/Spigot
020da84ad2
Some more backwards incompatible changes (minor though), also a ton of small cleanup.
...
onPluginEnable(PluginEvent event) -> onPluginEnable(PluginEnableEvent event)
onPluginDisable(PluginEvent event) -> onPluginDisable(PluginDisableEvent event)
onVehicleUpdate(VehicleEvent event) -> onVehicleUpdate(VehicleUpdateEvent event)
onWorldSave(WorldEvent event) -> onWorldSave(WorldSaveEvent event)
onWorldLoad(WorldEvent event) -> onWorldLoad(WorldLoadEvent event)
By: Erik Broes <erikbroes@grum.nl >
2011-03-26 22:21:20 +01:00
Bukkit/Spigot
0bde75cc9d
Added player join event
...
By: Raphfrk <raphfrk@gmail.com >
2011-03-26 11:29:48 +00:00
Bukkit/Spigot
65e79b2885
Fixed basic dependency functionality - If class can't be found, all other .jar files are scanned
...
By: Raphfrk <raphfrk@gmail.com >
2011-03-09 22:14:13 +00:00
Bukkit/Spigot
7824cc02e7
Add PLAYER_INTERACT, remove BLOCK_RIGHT_CLICK, BLOCK_INTERACT and PLAYER_ITEM
...
By: Erik Broes <erikbroes@ripe.net >
2011-03-23 12:30:54 +01:00
Bukkit/Spigot
4819bb5819
Added PlayerBucket events
...
By: Erik Broes <erikbroes@grum.nl >
2011-03-21 00:48:34 +01:00
Bukkit/Spigot
6a1bad5d41
Renamed many events/constants to be not past tense <-- Major Break says: "HI"
...
By: Erik Broes <erikbroes@grum.nl >
2011-03-13 15:21:09 +01:00
Bukkit/Spigot
9256bcd67e
onLoad optional...
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-15 11:45:11 +00:00
Bukkit/Spigot
8117c7771d
Plugins can no longer register events while disabled
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-14 15:11:43 +00:00
Bukkit/Spigot
e377a96a02
Adds an onLoad method to Plugin. The onLoad method is called for all plugins before the onEnable calls
...
By: Raphfrk <raphfrk@gmail.com >
2011-03-12 17:39:51 +00:00
Bukkit/Spigot
97f4798d51
Reverted classloader changes by 1f0d89be27, now actually works! Again!
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-08 18:20:34 +00:00
Bukkit/Spigot
6dc6946312
Adds basic plugin dependencies, courtesy of Raphfrk
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-03-07 13:56:34 +00:00
Bukkit/Spigot
bb755bb9a2
Added a few null pointer checks and performed minor touchups (tried improving a few equals, clone and hashCode methods).
...
By: VictorD <victor.danell@gmail.com >
2011-03-05 12:27:51 +01:00
Bukkit/Spigot
9c2782bea7
Added JavaPlugin.getCommand
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-28 01:35:03 +00:00
Bukkit/Spigot
2a6a5d5dc5
Readded default onCommand on plugins
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-28 00:45:44 +00:00
Bukkit/Spigot
0a0e475f83
Tweaks to command system to allow setting executors via plugins (no more ambiguous onCommand in plugins)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-28 00:30:59 +00:00
Bukkit/Spigot
1595230d40
Removed onPlayerCommand (PLAYER_COMMAND) (and fixed Fillr to stop using it)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-26 19:08:12 +00:00
Bukkit/Spigot
e2042c4cfa
No longer supporting the TSLPC (inb4pitchforks)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-25 22:00:58 +00:00
Bukkit/Spigot
d88a7b4f90
onPluginEnabled after plugin is enabled + same for onPluginDisabled
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-25 12:54:08 +00:00
Bukkit/Spigot
1257e0d24f
Updating plugin nags to use logger
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-20 02:27:16 +00:00
Bukkit/Spigot
f398397845
Added Server.getLogger, changed a few anonymous loggers to use it
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-20 02:24:47 +00:00
Bukkit/Spigot
e3b86cda50
Lowered the priority of the old command handler event because a number of plugins were using this event incorrectly. A new event, the command preprocesser event, has replaced the previous function of the original command event.
...
By: sk89q <the.sk89q@gmail.com >
2011-02-19 01:41:33 -08:00
Bukkit/Spigot
bff4790a18
And this is so that we don't have to support misbehaving plugins.
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-20 00:47:21 +00:00
Bukkit/Spigot
03a61a197f
... Supporting the plugins which really shouldn't be doing what they're doing. Don't put crap in the constructor!
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-20 00:43:06 +00:00
Bukkit/Spigot
4bb9f83d53
Removed TSLPC (That Stupidly Long Plugin Constructor)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-20 00:13:25 +00:00
Bukkit/Spigot
314bf387b5
Fixed event priorities
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-19 20:43:35 +00:00
Bukkit/Spigot
a36de75a17
Shifting damage events per http://forums.bukkit.org/threads/oops-i-broke-your-plugins.599/#post-67424 (This breaks stuff!)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-19 17:08:14 +00:00
Bukkit/Spigot
6190a55cad
Added CREATURE_SPAWN event
...
By: ss2man44 <frigids@gmail.com >
2011-01-11 21:29:48 -05:00
Bukkit/Spigot
1336c08f59
Exposes recently added PLAYER_PICKUP_ITEM event.
...
By: EvilSeph <evilseph@unaligned.org >
2011-02-12 07:52:08 -05:00
Bukkit/Spigot
8d18ce772e
Added EXPLOSION_PRIMED event.
...
By: culturespy <culturespy@gmail.com >
2011-02-03 21:59:42 -05:00
Bukkit/Spigot
204952eed0
Added SIGN_CHANGE event.
...
By: Timberjaw <timberjaw@gmail.com >
2011-02-10 18:18:56 -08:00
Bukkit/Spigot
290d9aedc9
Added event for when a world is saved (EyvindRM)
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-09 12:53:33 +00:00
Bukkit/Spigot
b280199e83
Added Sneaking Event
...
By: Alexander Hesse <azi@MacBook-Pro.local >
2011-01-25 19:04:52 +01:00
Bukkit/Spigot
d19bdf7a67
Just breaking some redstone plugins, don't mind me
...
By: Dinnerbone <dinnerbone@dinnerbone.com >
2011-02-08 12:53:30 +00:00