SavageFactions 1.0.23
Ability to remove items from main menu in perms for choosing roles/relations by setting the slot to -1 Changed placeholder identifier back because hooks in many plugins broke :( Removed debug message from warzone fly. Changed public modifiers on relation back, as they broke the method signature.
This commit is contained in:
@@ -4,9 +4,9 @@ import com.massivecraft.factions.zcore.util.TL;
|
||||
|
||||
public interface EconomyParticipator extends RelationParticipator {
|
||||
|
||||
String getAccountId();
|
||||
public String getAccountId();
|
||||
|
||||
void msg(String str, Object... args);
|
||||
public void msg(String str, Object... args);
|
||||
|
||||
void msg(TL translation, Object... args);
|
||||
public void msg(TL translation, Object... args);
|
||||
}
|
||||
@@ -5,13 +5,13 @@ import org.bukkit.ChatColor;
|
||||
|
||||
public interface RelationParticipator {
|
||||
|
||||
String describeTo(RelationParticipator that);
|
||||
public String describeTo(RelationParticipator that);
|
||||
|
||||
String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
public String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
|
||||
Relation getRelationTo(RelationParticipator that);
|
||||
public Relation getRelationTo(RelationParticipator that);
|
||||
|
||||
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
public Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
|
||||
ChatColor getColorTo(RelationParticipator to);
|
||||
public ChatColor getColorTo(RelationParticipator to);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user