Commit Graph

836 Commits

Author SHA1 Message Date
sunkid
51731221d0 Added MaterialData support for SAPPLING, POWERED_RAIL, and DETECTOR_RAIL. 2011-04-25 17:17:21 -04:00
Rigby
3081b6ad16 Added the ability to retrieve a world's Seed. 2011-04-25 16:48:44 -04:00
Erik Broes
d94fce59ff Updated README for line-ending demands, also fixed line-endigs. 2011-04-25 13:24:32 +02:00
EvilSeph
4ffc9a6d57 Fixed getData() not returning the correct values. 2011-04-25 07:17:12 -04:00
EvilSeph
54fc471ec5 Fixed AIOOBE when entering a space into console and hitting enter. 2011-04-24 21:49:45 -04:00
sk89q
6a92cc783e Add methods to control thunder. 2011-04-22 03:12:54 -07:00
sk89q
a65f45661d Added weather control methods. 2011-04-22 02:17:53 -07:00
sk89q
b2ae16be0c Added World.strikeLightning(). Also renamed WeatherStorm -> LightningStrike. 2011-04-22 01:25:41 -07:00
sk89q
38e97d064f Added lightning as a cause for fires. 2011-04-22 01:20:49 -07:00
Dinnerbone
70a1215e33 Added Achievement and Statistics 2011-04-21 20:56:19 +01:00
Dinnerbone
8428739a27 Added LIGHTNING as a possible source of damage 2011-04-21 17:29:07 +01:00
Dinnerbone
6ae3a6cc7d Added Weather and WeatherStorm 2011-04-21 16:51:43 +01:00
Dinnerbone
cca6505c33 Added Creeper.set/isPowered 2011-04-21 16:15:59 +01:00
Dinnerbone
56afe8be0b Added WEB, POWERED_RAIL and DETECTOR_RAIL to block list 2011-04-21 15:41:40 +01:00
Dinnerbone
240ae33638 Dammit, line endings! 2011-04-21 15:27:18 +01:00
Erik Broes
e5a456792d Backwards incompatible change to match 1.4_00_01 2011-04-20 18:59:31 +02:00
sk89q
a7724a5138 Added pre-login event for catching logins right after name verification has completed. This happens in a different thread from the server (and thus can also block). 2011-04-16 03:08:05 -07:00
sk89q
c4a1e2613b Fixin' the problem of AFK people not in bed. 2011-04-11 11:48:30 -07:00
sk89q
ef5d72ec02 Added bed events and methods. 2011-04-07 11:26:33 -07:00
Dinnerbone
748447716b Line endings. This is getting very annoying. 2011-04-05 16:35:57 +01:00
EvilSeph
227772ba4f Fixed PlayerInventoryEvent Type. 2011-04-04 20:40:46 -04:00
sk89q
b2dd16984f Added a check for when the old and new data folders are the same. 2011-04-03 23:05:25 -07:00
Tahg
1723111b36 added some API for entities 2011-04-04 01:14:26 -04:00
afforess
5a85c95c24 Added interface for player.saveData and player.loadData. 2011-04-03 15:53:26 -04:00
Erik Broes
78c87ee4bf Pluginnames can also space out now 2011-04-03 19:17:18 +02:00
Erik Broes
ead1f771c9 Forgot we have windows to support as well 2011-04-03 16:42:33 +02:00
Erik Broes
0de380f51c A plugin's name can now only contain: [A-Za-z0-9()\[\]{}_.-] 2011-04-03 16:26:27 +02:00
Erik Broes
9b1c7348bd 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
2011-04-03 16:12:44 +02:00
sunkid
55e4fbfd14 Ton of Material extensions handling the meta-data of blocks. 2011-04-03 11:28:19 +02:00
Raphfrk
ebb3a6fbc7 Added the ability to set the quit message 2011-04-02 18:25:33 +02:00
Stephen
19fb291b34 Added getNearbyEntities 2011-04-02 17:24:45 +02:00
afforess
55f5b45e4c Entity.isDead returns true if the entity has been marked for removal 2011-04-02 17:20:05 +02:00
Robert Sargant
49be099147 Added VEHICLE_DESTROY event 2011-04-02 17:10:36 +02:00
William Bowers
c105f68327 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();
      }
  }
2011-04-02 17:00:29 +02:00
Dinnerbone
3fb7d7e240 Added {NAME} replacement in database location 2011-04-01 16:51:33 +01:00
Dinnerbone
8ba69aaf28 DDL generation methods 2011-04-01 16:09:23 +01:00
Dinnerbone
a250f66c2e Configuration tweaks - enforce default + parent file nullcheck 2011-04-01 16:09:23 +01:00
Dinnerbone
cf6b46bda9 Implemented ebeans 2011-04-01 16:09:23 +01:00
Dinnerbone
217eb0c642 Made Server a singleton, accessible by Bukkit.getServer(). 2011-04-01 16:09:23 +01:00
Erik Broes
d9c309d82c Fix IIOB error when dealing with an incomplete YAML && Nagging 2011-04-01 10:24:48 +02:00
Erik Broes
faa15bc068 Catch YAML exceptions as InvalidPluginExceptions 2011-04-01 09:59:24 +02:00
Dinnerbone
32dd96cab4 Missed a hard break 2011-03-31 23:02:39 +01:00
Dinnerbone
fe2c6c7b1c We weren't supposed to break things *that* hard. Plugins still need to update but here's a TEMPORARY fix. 2011-03-31 22:51:26 +01:00
Dinnerbone
69537201b4 Added Wolf creature interface 2011-03-31 22:10:28 +01:00
Dinnerbone
b01b49da5e Added COOKIE and LOCKED_CHEST 2011-03-31 21:55:16 +01:00
Dinnerbone
95cf1ccadc Can now create worlds with specific seeds 2011-03-31 21:46:05 +01:00
Dinnerbone
30d8d1f4dd Line-endings! 2011-03-31 16:37:56 +01:00
lukegb
96305c2bc2 Seal-fail workaround 2011-03-31 14:16:13 +00:00
Erik Broes
d208614fcc Just NAG once, to be nice 2011-03-30 00:38:46 +02:00
Erik Broes
6dfe133f17 Force compile-time failures for the subtle changes done in the API 2011-03-30 00:25:59 +02:00