Fix missing "w/" text.

This commit is contained in:
sigonasr2 2018-09-28 06:15:13 -05:00
parent 42b959c73a
commit b411169486
2 changed files with 1 additions and 1 deletions

Binary file not shown.

@ -198,7 +198,7 @@ public class BandoriBot extends ListenerAdapter{
currentEvent = currentEvent.replace("<STORE>", storeList[(int)(Math.random()*storeList.length)]);
currentEvent = currentEvent.replace("<ITEMS>", itemList[(int)(Math.random()*itemList.length)]);
if (Math.random()<=0.6) {
currentEvent = currentEvent.replace("<POSSIBLECHAR>", possibleCharList[(int)(Math.random()*possibleCharList.length)]);
currentEvent = currentEvent.replace("<POSSIBLECHAR>", "w/"+possibleCharList[(int)(Math.random()*possibleCharList.length)]);
} else {
currentEvent = currentEvent.replace("<POSSIBLECHAR>", "");
}