Line endings, consistency!
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.Chunk;
|
||||
|
||||
public class ChunkEvent extends WorldEvent {
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.Chunk;
|
||||
|
||||
public class ChunkEvent extends WorldEvent {
|
||||
protected Chunk chunk;
|
||||
|
||||
protected ChunkEvent(Type type, Chunk chunk) {
|
||||
super(type, chunk.getWorld());
|
||||
this.chunk = chunk;
|
||||
}
|
||||
|
||||
protected ChunkEvent(Type type, Chunk chunk) {
|
||||
super(type, chunk.getWorld());
|
||||
this.chunk = chunk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the chunk being loaded/unloaded
|
||||
*
|
||||
@@ -18,4 +18,4 @@ public class ChunkEvent extends WorldEvent {
|
||||
public Chunk getChunk() {
|
||||
return chunk;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.World;
|
||||
|
||||
public class WorldLoadEvent extends WorldEvent {
|
||||
public WorldLoadEvent(World world) {
|
||||
super(Type.WORLD_LOAD, world);
|
||||
}
|
||||
}
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.World;
|
||||
|
||||
public class WorldLoadEvent extends WorldEvent {
|
||||
public WorldLoadEvent(World world) {
|
||||
super(Type.WORLD_LOAD, world);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.World;
|
||||
|
||||
public class WorldSaveEvent extends WorldEvent {
|
||||
public WorldSaveEvent(World world) {
|
||||
super(Type.WORLD_SAVE, world);
|
||||
}
|
||||
}
|
||||
package org.bukkit.event.world;
|
||||
|
||||
import org.bukkit.World;
|
||||
|
||||
public class WorldSaveEvent extends WorldEvent {
|
||||
public WorldSaveEvent(World world) {
|
||||
super(Type.WORLD_SAVE, world);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user