Dammit, line endings!

This commit is contained in:
Dinnerbone
2011-04-21 15:27:18 +01:00
parent e5a456792d
commit 240ae33638
4 changed files with 247 additions and 247 deletions

View File

@@ -1,29 +1,29 @@
package org.bukkit.event.player;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
/**
* This event is fired when the player is leaving a bed.
*
* @author sk89q
*/
public class PlayerBedLeaveEvent extends PlayerEvent {
private Block bed;
public PlayerBedLeaveEvent(Player who, Block bed) {
super(Type.PLAYER_BED_LEAVE, who);
this.bed = bed;
}
/**
* Returns the bed block.
*
* @return
*/
public Block getBed() {
return bed;
}
}
package org.bukkit.event.player;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
/**
* This event is fired when the player is leaving a bed.
*
* @author sk89q
*/
public class PlayerBedLeaveEvent extends PlayerEvent {
private Block bed;
public PlayerBedLeaveEvent(Player who, Block bed) {
super(Type.PLAYER_BED_LEAVE, who);
this.bed = bed;
}
/**
* Returns the bed block.
*
* @return
*/
public Block getBed() {
return bed;
}
}