2012-12-19 13:18:56 +01:00
|
|
|
package com.massivecraft.factions.event;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
|
|
import org.bukkit.entity.Player;
|
2012-12-19 13:18:56 +01:00
|
|
|
import org.bukkit.event.Cancellable;
|
|
|
|
import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
|
2014-07-09 21:00:16 +02:00
|
|
|
public class PowerLossEvent extends FactionPlayerEvent implements Cancellable {
|
2012-12-19 13:18:56 +01:00
|
|
|
|
2014-07-09 21:00:16 +02:00
|
|
|
private boolean cancelled = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
private String message;
|
|
|
|
|
|
|
|
public PowerLossEvent(Faction f, FPlayer p) {
|
2014-07-09 21:00:16 +02:00
|
|
|
super(f, p);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 21:00:16 +02:00
|
|
|
@Deprecated
|
2014-04-04 20:55:21 +02:00
|
|
|
public String getFactionId() {
|
2014-07-09 21:00:16 +02:00
|
|
|
return getFaction().getId();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 21:00:16 +02:00
|
|
|
@Deprecated
|
2014-04-04 20:55:21 +02:00
|
|
|
public String getFactionTag() {
|
2014-07-09 21:00:16 +02:00
|
|
|
return getFaction().getTag();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2014-07-09 21:00:16 +02:00
|
|
|
@Deprecated
|
2014-04-04 20:55:21 +02:00
|
|
|
public Player getPlayer() {
|
2014-07-09 21:00:16 +02:00
|
|
|
return getfPlayer().getPlayer();
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public String getMessage() {
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMessage(String message) {
|
|
|
|
this.message = message;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
@Override
|
|
|
|
public boolean isCancelled() {
|
|
|
|
return cancelled;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
@Override
|
|
|
|
public void setCancelled(boolean c) {
|
|
|
|
this.cancelled = c;
|
|
|
|
}
|
2012-12-19 13:18:56 +01:00
|
|
|
|
|
|
|
}
|