New setting "broadcastDescriptionChanges" (default false) which can be enabled to have faction description changes broadcast to everyone on the server. Previously description changes were always broadcast.

Also added witch and wither boss to monster list, missed that for last release.
This commit is contained in:
Brettflan 2012-11-09 18:22:41 -06:00
parent c19db9aee7
commit 8aa9e18be6
2 changed files with 11 additions and 1 deletions

View File

@ -68,7 +68,9 @@ public class Conf
public static String chatTagFormat = "%s"+ChatColor.WHITE;
public static String factionChatFormat = "%s:"+ChatColor.WHITE+" %s";
public static String allianceChatFormat = ChatColor.LIGHT_PURPLE+"%s:"+ChatColor.WHITE+" %s";
public static boolean broadcastDescriptionChanges = false;
public static double autoLeaveAfterDaysOfInactivity = 10.0;
public static double autoLeaveRoutineRunsEveryXMinutes = 5.0;
public static boolean removePlayerDataWhenBanned = true;
@ -353,6 +355,8 @@ public class Conf
safeZoneNerfedCreatureTypes.add(EntityType.SKELETON);
safeZoneNerfedCreatureTypes.add(EntityType.SPIDER);
safeZoneNerfedCreatureTypes.add(EntityType.SLIME);
safeZoneNerfedCreatureTypes.add(EntityType.WITCH);
safeZoneNerfedCreatureTypes.add(EntityType.WITHER);
safeZoneNerfedCreatureTypes.add(EntityType.ZOMBIE);
}

View File

@ -34,6 +34,12 @@ public class CmdDescription extends FCommand
myFaction.setDescription(TextUtil.implode(args, " ").replaceAll("(&([a-f0-9]))", "& $2")); // since "&" color tags seem to work even through plain old FPlayer.sendMessage() for some reason, we need to break those up
if ( ! Conf.broadcastDescriptionChanges)
{
fme.msg("You have changed your faction description to:", myFaction.describeTo(fme));
return;
}
// Broadcast the description to everyone
for (FPlayer fplayer : FPlayers.i.getOnline())
{