summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeLines
* Added WEB, POWERED_RAIL and DETECTOR_RAIL to block listDinnerbone2011-04-21-0/+3
|
* Dammit, line endings!Dinnerbone2011-04-21-247/+247
|
* Backwards incompatible change to match 1.4_00_01Erik Broes2011-04-20-2/+2
|
* Added pre-login event for catching logins right after name verification has ↵sk89q2011-04-16-6/+155
| | | | completed. This happens in a different thread from the server (and thus can also block).
* Fixin' the problem of AFK people not in bed.sk89q2011-04-11-0/+17
|
* Added bed events and methods.sk89q2011-04-07-0/+136
|
* Line endings. This is getting very annoying.Dinnerbone2011-04-05-75/+75
|
* Fixed PlayerInventoryEvent Type.EvilSeph2011-04-04-1/+7
|
* Added a check for when the old and new data folders are the same.sk89q2011-04-03-1/+3
|
* added some API for entitiesTahg2011-04-04-0/+84
|
* Added interface for player.saveData and player.loadData.afforess2011-04-03-0/+12
|
* Pluginnames can also space out nowErik Broes2011-04-03-1/+1
|
* Forgot we have windows to support as wellErik Broes2011-04-03-1/+1
|
* A plugin's name can now only contain: [A-Za-z0-9()\[\]{}_.-]Erik Broes2011-04-03-0/+4
|
* Plugin's datafolders are now named after the plugin's name (from config.yml)Erik Broes2011-04-03-4/+37
| | | | | 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
* Ton of Material extensions handling the meta-data of blocks.sunkid2011-04-03-135/+1203
|
* Added the ability to set the quit messageRaphfrk2011-04-02-1/+24
|
* Added getNearbyEntitiesStephen2011-04-02-0/+12
|
* Entity.isDead returns true if the entity has been marked for removalafforess2011-04-02-0/+5
|
* Added VEHICLE_DESTROY eventRobert Sargant2011-04-02-0/+53
|
* Added the SPAWN_CHANGE event, which occurs when a world's spawn is changed.William Bowers2011-04-02-0/+49
| | | | | | | | | | | | | | | | | | 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(); } }
* Added {NAME} replacement in database locationDinnerbone2011-04-01-1/+3
|
* DDL generation methodsDinnerbone2011-04-01-0/+16
|
* Configuration tweaks - enforce default + parent file nullcheckDinnerbone2011-04-01-1/+8
|
* Implemented ebeansDinnerbone2011-04-01-1/+77
|
* Made Server a singleton, accessible by Bukkit.getServer().Dinnerbone2011-04-01-0/+39
|
* Fix IIOB error when dealing with an incomplete YAML && NaggingErik Broes2011-04-01-1/+6
|
* Catch YAML exceptions as InvalidPluginExceptionsErik Broes2011-04-01-0/+3
|
* Missed a hard breakDinnerbone2011-03-31-1/+1
|
* We weren't supposed to break things *that* hard. Plugins still need to ↵Dinnerbone2011-03-31-14/+36
| | | | update but here's a TEMPORARY fix.
* Added Wolf creature interfaceDinnerbone2011-03-31-1/+37
|
* Added COOKIE and LOCKED_CHESTDinnerbone2011-03-31-0/+2
|
* Can now create worlds with specific seedsDinnerbone2011-03-31-0/+12
|
* Line-endings!Dinnerbone2011-03-31-645/+645
|
* Seal-fail workaroundlukegb2011-03-31-0/+3
|
* Just NAG once, to be niceErik Broes2011-03-30-6/+32
|
* Force compile-time failures for the subtle changes done in the APIErik Broes2011-03-30-0/+24
|
* Add 'NagException' to disclose plugin failErik Broes2011-03-30-0/+27
|
* Add 'MONSTER' to CreatureTypeErik Broes2011-03-29-4/+4
|
* Move passenger-handling to EntityErik Broes2011-03-29-30/+30
|
* Added the KICK_WHITELIST Result for players being kicked from not being on ↵HACKhalo22011-03-29-1/+6
| | | | the whitelist, just because KICK_BANNED didn't seem to fit.
* RegisterInterface reload bug fixDinnerbone2011-03-29-0/+1
|
* fixed PlayerCommandPreprocessEvent inheritancesunkid2011-03-28-5/+9
|
* Fixed PlayerTeleportEvent so getType() returns Type.PLAYER_TELEPORTByron Shelden2011-03-28-2/+12
|
* Line endings, consistency!Dinnerbone2011-03-27-823/+823
|
* Fix Type of VehicleDamageEventErik Broes2011-03-27-1/+1
|
* Change some more signatures :(Erik Broes2011-03-27-9/+38
| | | | | | | | 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)
* Fix some wrong event creations after previous changeErik Broes2011-03-26-2/+2
|
* Some more backwards incompatible changes (minor though), also a ton of small ↵Erik Broes2011-03-26-376/+312
| | | | | | | | | | 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)
* Add setSheared() to Sheep and setSize() to Slimes.Celtic Minstrel2011-03-26-2/+20
|