Code Cleanup/Added Configurable option to deny and remove homes in ANY factions land.
More Soon..
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
package com.massivecraft.factions.iface;
|
||||
|
||||
import com.massivecraft.factions.zcore.util.TL;
|
||||
|
||||
public interface EconomyParticipator extends RelationParticipator {
|
||||
|
||||
public String getAccountId();
|
||||
|
||||
public void msg(String str, Object... args);
|
||||
|
||||
public void msg(TL translation, Object... args);
|
||||
package com.massivecraft.factions.iface;
|
||||
|
||||
import com.massivecraft.factions.zcore.util.TL;
|
||||
|
||||
public interface EconomyParticipator extends RelationParticipator {
|
||||
|
||||
String getAccountId();
|
||||
|
||||
void msg(String str, Object... args);
|
||||
|
||||
void msg(TL translation, Object... args);
|
||||
}
|
||||
@@ -1,17 +1,17 @@
|
||||
package com.massivecraft.factions.iface;
|
||||
|
||||
import com.massivecraft.factions.struct.Relation;
|
||||
import org.bukkit.ChatColor;
|
||||
|
||||
public interface RelationParticipator {
|
||||
|
||||
public String describeTo(RelationParticipator that);
|
||||
|
||||
public String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
|
||||
public Relation getRelationTo(RelationParticipator that);
|
||||
|
||||
public Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
|
||||
public ChatColor getColorTo(RelationParticipator to);
|
||||
}
|
||||
package com.massivecraft.factions.iface;
|
||||
|
||||
import com.massivecraft.factions.struct.Relation;
|
||||
import org.bukkit.ChatColor;
|
||||
|
||||
public interface RelationParticipator {
|
||||
|
||||
String describeTo(RelationParticipator that);
|
||||
|
||||
String describeTo(RelationParticipator that, boolean ucfirst);
|
||||
|
||||
Relation getRelationTo(RelationParticipator that);
|
||||
|
||||
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
||||
|
||||
ChatColor getColorTo(RelationParticipator to);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user