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:
Naman
2018-04-03 09:38:11 -05:00
parent 12b9f94fe4
commit 009e3e715c
12 changed files with 280 additions and 279 deletions

View File

@@ -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);
}

View File

@@ -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);
}