Config: fix initial file generation
parent
0831ad4b2f
commit
357b1283c1
|
@ -37,16 +37,16 @@ public class Config {
|
||||||
configOut += "\n\n# Allow players other than the owner to get the items?\n";
|
configOut += "\n\n# Allow players other than the owner to get the items?\n";
|
||||||
configOut += "allowOtherPlayers=";
|
configOut += "allowOtherPlayers=";
|
||||||
configOut += allowOtherPlayers ? "true" : "false";
|
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 += notAllowedMessage;
|
configOut += notAllowedMessage;
|
||||||
configOut += "\n\n# Whether to give respawning players an obituary item\n";
|
configOut += "\n\n# Whether to give respawning players an obituary item\n";
|
||||||
configOut += "giveObituary=";
|
configOut += "giveObituary=";
|
||||||
configOut += giveObituary ? "true" : "false";
|
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 += 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=";
|
||||||
configOut += locationMessage;
|
configOut += locationMessage;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue