Skip to content

Commit

Permalink
Abide by worldSize option
Browse files Browse the repository at this point in the history
World is no longer a pre-set test level.
  • Loading branch information
Nixinova committed Jul 24, 2024
1 parent 7529f53 commit d70b07d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Next
- Added block face culling
- World now only generates along the positive axes
- World now abides by worldSize option again

## 0.0.17_3
*2024-07-24 23:03*
Expand Down
1 change: 0 additions & 1 deletion src/com/nixinova/options/Options.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ private static void parseOptionStrs(String name, String val) {
seed = Long.parseLong(val);
if (name.contains(OPTION_STRINGS.worldSize))
worldSize = Integer.parseInt(val);
worldSize = 10; // Temporary measure for performance in v.14
if (name.contains(OPTION_STRINGS.renderDistance))
renderDistance = Integer.parseInt(val);
if (name.contains(OPTION_STRINGS.gamma))
Expand Down

0 comments on commit d70b07d

Please sign in to comment.