Default chat tag insert index should be 0. Resolves #100 sorta.

This commit is contained in:
drtshock 2015-01-16 10:01:26 -06:00
parent 102d13a3f6
commit a7adb1d9d7
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class Conf {
public static String chatTagReplaceString = "[FACTION]";
public static String chatTagInsertAfterString = "";
public static String chatTagInsertBeforeString = "";
public static int chatTagInsertIndex = 1;
public static int chatTagInsertIndex = 0;
public static boolean chatTagPadBefore = false;
public static boolean chatTagPadAfter = true;
public static String chatTagFormat = "%s" + ChatColor.WHITE;