mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
the heck, when did I write that? O_o
This commit is contained in:
parent
a3c1d7e110
commit
3b3d28c3fc
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue