Add default faction description TL

implemented from hcf with love <3
This commit is contained in:
Nick Porillo 2015-05-12 21:49:27 -04:00
parent ab6a19e436
commit a068583678
2 changed files with 2 additions and 1 deletions

View File

@ -287,7 +287,7 @@ public abstract class MemoryFaction implements Faction, EconomyParticipator {
this.id = id;
this.open = Conf.newFactionsDefaultOpen;
this.tag = "???";
this.description = "Default faction description :(";
this.description = TL.GENERIC_DEFAULTDESCRIPTION.toString();
this.lastPlayerLoggedOffTime = 0;
this.peaceful = false;
this.peacefulExplosionsEnabled = false;

View File

@ -561,6 +561,7 @@ public enum TL {
GENERIC_NOPLAYERFOUND("<b>No player \"<p>%1$s<b>\" could not be found."),
GENERIC_ARGS_TOOFEW("<b>Too few arguments. <i>Use like this:"),
GENERIC_ARGS_TOOMANY("<b>Strange argument \"<p>%1$s<b>\". <i>Use the command like this:"),
GENERIC_DEFAULTDESCRIPTION("Default faction description :("),
GENERIC_OWNERS("Owner(s): %1$s"),
GENERIC_PUBLICLAND("Public faction land."),
GENERIC_FACTIONLESS("factionless"),