Showing Dropping Anvil Something (Ignore)

This commit is contained in:
Driftay
2019-09-15 05:14:14 -04:00
parent 2a1a8db554
commit e7db7170d1
285 changed files with 28757 additions and 28757 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);
}