mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Fix Titles
This commit is contained in:
parent
e615fb4c44
commit
6c40ed7718
1 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,9 @@ public class PlotListener {
|
|||
return true;
|
||||
}
|
||||
} else {
|
||||
titles = plot.getFlag(Flags.TITLES, true);
|
||||
if (Settings.TITLES) {
|
||||
titles = plot.getFlag(Flags.TITLES, true);
|
||||
}
|
||||
Optional<String> greetingFlag = plot.getFlag(Flags.GREETING);
|
||||
if (greetingFlag.isPresent()) {
|
||||
greeting = greetingFlag.get();
|
||||
|
|
Loading…
Reference in a new issue