Added World.strikeLightning(). Also renamed WeatherStorm -> LightningStrike.

This commit is contained in:
sk89q
2011-04-22 01:25:55 -07:00
parent 628fec752b
commit 6739d6d75c
3 changed files with 11 additions and 4 deletions

View File

@@ -363,6 +363,13 @@ public class CraftWorld implements World {
return creature;
}
@Override
public LightningStrike strikeLightning(Location loc) {
EntityWeatherStorm lightning = new EntityWeatherStorm(world, loc.getX(), loc.getY(), loc.getZ());
world.a(lightning);
return new CraftLightningStrike(server, lightning);
}
public boolean generateTree(Location loc, TreeType type) {
return generateTree(loc, type, world);
}