Skip to content
This repository has been archived by the owner on Sep 1, 2019. It is now read-only.

Commit

Permalink
Fix #32
Browse files Browse the repository at this point in the history
  • Loading branch information
Kripth committed Sep 29, 2018
1 parent f7dc6a7 commit e817145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/src/config.d
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ auto loadConfig(ConfigType type, ref string[] args) {
}
if(isNode) with(this.node) {
file ~= newline ~ "[world]" ~ newline;
file ~= "gamemode = " ~ to!string(gamemode) ~ newline;
file ~= "difficulty = " ~ to!string(difficulty) ~ newline;
file ~= "gamemode = \"" ~ to!string(gamemode) ~ "\"" ~ newline;
file ~= "difficulty = \"" ~ to!string(difficulty) ~ "\"" ~ newline;
file ~= "deplete-hunger = " ~ to!string(depleteHunger) ~ newline;
file ~= "do-daylight-cycle = " ~ to!string(doDaylightCycle) ~ newline;
file ~= "do-entity-drops = " ~ to!string(doEntityDrops) ~ newline;
Expand Down

0 comments on commit e817145

Please sign in to comment.