Showing Dropping Anvil Something (Ignore)

This commit is contained in:
Driftay
2019-09-15 05:08:00 -04:00
parent 978bcbbb3b
commit e07dc303ef
285 changed files with 28181 additions and 28161 deletions

View File

@@ -10,41 +10,41 @@ import org.bukkit.event.HandlerList;
*/
public class FactionRelationEvent extends Event {
private static final HandlerList handlers = new HandlerList();
private static final HandlerList handlers = new HandlerList();
private Faction fsender;
private Faction ftarget;
private Relation foldrel;
private Relation frel;
private Faction fsender;
private Faction ftarget;
private Relation foldrel;
private Relation frel;
public FactionRelationEvent(Faction sender, Faction target, Relation oldrel, Relation rel) {
fsender = sender;
ftarget = target;
foldrel = oldrel;
frel = rel;
}
public FactionRelationEvent(Faction sender, Faction target, Relation oldrel, Relation rel) {
fsender = sender;
ftarget = target;
foldrel = oldrel;
frel = rel;
}
public static HandlerList getHandlerList() {
return handlers;
}
public static HandlerList getHandlerList() {
return handlers;
}
public HandlerList getHandlers() {
return handlers;
}
public HandlerList getHandlers() {
return handlers;
}
public Relation getOldRelation() {
return foldrel;
}
public Relation getOldRelation() {
return foldrel;
}
public Relation getRelation() {
return frel;
}
public Relation getRelation() {
return frel;
}
public Faction getFaction() {
return fsender;
}
public Faction getFaction() {
return fsender;
}
public Faction getTargetFaction() {
return ftarget;
}
public Faction getTargetFaction() {
return ftarget;
}
}