SavageFactions 1.0.21-BETA-2
Fixed tnt message New message for fly disable to show cooldown Started on remaking lang file fly will not disable when an ally, truce, or faction member hits you. Role prefix value added to placeholderapli class changed identifier for placeholderapi Made 1.7 detection Placing blocks wont throw errors anymore in 1.7.
This commit is contained in:
@@ -4,9 +4,9 @@ import com.massivecraft.factions.zcore.util.TL;
|
||||
|
||||
public interface EconomyParticipator extends RelationParticipator {
|
||||
|
||||
public String getAccountId();
|
||||
String getAccountId();
|
||||
|
||||
public void msg(String str, Object... args);
|
||||
void msg(String str, Object... args);
|
||||
|
||||
public void msg(TL translation, Object... args);
|
||||
void msg(TL translation, Object... args);
|
||||
}
|
||||
@@ -5,13 +5,13 @@ import org.bukkit.ChatColor;
|
||||
|
||||
public interface RelationParticipator {
|
||||
|
||||
public String describeTo(RelationParticipator that);
|
||||
String describeTo(RelationParticipator that);
|
||||
|
||||
public String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
|
||||
public Relation getRelationTo(RelationParticipator that);
|
||||
Relation getRelationTo(RelationParticipator that);
|
||||
|
||||
public Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
|
||||
public ChatColor getColorTo(RelationParticipator to);
|
||||
ChatColor getColorTo(RelationParticipator to);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user