Showing Dropping Anvil Something (Ignore)

This commit is contained in:
Driftay
2019-09-15 05:02:53 -04:00
parent c4e81286b7
commit d98f5d9723
285 changed files with 28732 additions and 28729 deletions

View File

@@ -4,9 +4,9 @@ import com.massivecraft.factions.zcore.util.TL;
public interface EconomyParticipator extends RelationParticipator {
String getAccountId();
String getAccountId();
void msg(String str, Object... args);
void msg(String str, Object... args);
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 {
String describeTo(RelationParticipator that);
String describeTo(RelationParticipator that);
String describeTo(RelationParticipator that, boolean ucfirst);
String describeTo(RelationParticipator that, boolean ucfirst);
Relation getRelationTo(RelationParticipator that);
Relation getRelationTo(RelationParticipator that);
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
ChatColor getColorTo(RelationParticipator to);
ChatColor getColorTo(RelationParticipator to);
}