Removed 'text.*' prefix

This commit is contained in:
Anuken
2019-01-09 16:58:06 -05:00
parent daa7b20e4a
commit b9618d66f2
68 changed files with 6895 additions and 6895 deletions

View File

@@ -195,12 +195,12 @@ public class MobileInput extends InputHandler implements GestureListener{
void showGuide(String type){
if(!guides.contains(type) && !Core.settings.getBool(type, false)){
FloatingDialog dialog = new FloatingDialog("$text." + type + ".title");
FloatingDialog dialog = new FloatingDialog("$" + type + ".title");
dialog.addCloseButton();
dialog.content().left();
dialog.content().add("$text." + type).growX().wrap();
dialog.content().add("$" + type).growX().wrap();
dialog.content().row();
dialog.content().addCheck("$text.showagain", false, checked -> {
dialog.content().addCheck("$showagain", false, checked -> {
Core.settings.put(type, checked);
Core.settings.save();
}).growX().left().get().left();