the heck, when did I write that? O_o

This commit is contained in:
Ellpeck 2016-08-02 01:06:21 +02:00
parent a3c1d7e110
commit 3b3d28c3fc

View file

@ -52,9 +52,8 @@ public class BookletPageAA extends BookletPage{
base = base.replaceAll("<i>", TextFormatting.ITALIC+"");
base = base.replaceAll("<tifisgrin>", TextFormatting.DARK_RED+""+TextFormatting.UNDERLINE); //This is fucking important so go read it now
for(Object o : this.textReplacements.entrySet()){
Map.Entry e = (Map.Entry)o;
base = base.replaceAll((String)e.getKey(), (String)e.getValue());
for(Map.Entry<String, String> entry : this.textReplacements.entrySet()){
base = base.replaceAll(entry.getKey(), entry.getValue());
}
return base;
}