mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-27 18:51:34 +01:00
Fix new line on some action prompts
This commit is contained in:
parent
d38fad634f
commit
ee82e62805
@ -981,7 +981,7 @@ public class ActionMainPrompt extends ActionsEditorNumericPrompt {
|
||||
text.append("\n").append(ChatColor.AQUA).append("- ").append(s);
|
||||
}
|
||||
}
|
||||
return text.toString() + ChatColor.YELLOW + getQueryText(context);
|
||||
return text + "\n" + ChatColor.YELLOW + getQueryText(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -321,7 +321,7 @@ public class WeatherPrompt extends ActionsEditorNumericPrompt {
|
||||
effects.append("\n").append(w.getName()).append(", ");
|
||||
}
|
||||
effects = new StringBuilder(effects.substring(0, effects.length()));
|
||||
return ChatColor.YELLOW + effects.toString() + getQueryText(context);
|
||||
return effects + "\n" + ChatColor.YELLOW + getQueryText(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user