Config: fix initial file generation

master
BodgeMaster 2022-12-21 04:43:00 +01:00
parent 0831ad4b2f
commit 357b1283c1
1 changed files with 3 additions and 3 deletions

View File

@ -37,16 +37,16 @@ public class Config {
configOut += "\n\n# Allow players other than the owner to get the items?\n";
configOut += "allowOtherPlayers=";
configOut += allowOtherPlayers ? "true" : "false";
configOut += "\n\n# The message to display when trying to get items from another player's death chest and allowOtherPlayers=false";
configOut += "\n\n# The message to display when trying to get items from another player's death chest and allowOtherPlayers=false\n";
configOut += "notAllowedMessage=";
configOut += notAllowedMessage;
configOut += "\n\n# Whether to give respawning players an obituary item\n";
configOut += "giveObituary=";
configOut += giveObituary ? "true" : "false";
configOut += "\n\n# The message to display when no suitable location for a death chest could be found and the items have been dropped";
configOut += "\n\n# The message to display when no suitable location for a death chest could be found and the items have been dropped\n";
configOut += "dropMessage=";
configOut += dropMessage;
configOut += "\n\n# The message to display when no suitable location for a death chest could be found and the items have been dropped";
configOut += "\n\n# How to display the death chest location\n";
configOut += "locationMessage=";
configOut += locationMessage;