isThundering should just reflect thunder state.

This commit is contained in:
md_5 2015-01-13 20:42:33 +11:00
parent 93e7b199bd
commit e6f9fd4dc7

View File

@ -763,7 +763,7 @@ public class CraftWorld implements World {
}
public boolean isThundering() {
return hasStorm() && world.worldData.isThundering();
return world.worldData.isThundering();
}
public void setThundering(boolean thundering) {