Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch version 1.3.3 #151

Merged
merged 2 commits into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ generate in an area where it previously did not (resulting in a chunk border).


### Fixed
- Fixed pink petal structure generating broken block IDs.


## [v1.3.2]
Expand Down Expand Up @@ -142,4 +143,4 @@ generate in an area where it previously did not (resulting in a chunk border).
[1.1.1]: https://github.com/PolyhedralDev/TerraOverworldConfig/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/PolyhedralDev/TerraOverworldConfig/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/PolyhedralDev/TerraOverworldConfig/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/PolyhedralDev/TerraOverworldConfig/releases/tag/v1.0.0
[1.0.0]: https://github.com/PolyhedralDev/TerraOverworldConfig/releases/tag/v1.0.0
4 changes: 2 additions & 2 deletions pack.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
id: OVERWORLD
version: 1.3.2
version: 1.3.3
author: "Astrash, Sancires, Aureus"

generator: NOISE_3D
Expand Down Expand Up @@ -119,4 +119,4 @@ functions:

samplers:
"<<":
- math/samplers/simplex.yml:samplers
- math/samplers/simplex.yml:samplers
6 changes: 3 additions & 3 deletions structures/vegetation/flowers/pink_petals.tesf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
num flowers = randomInt(1000)/1000;
num dir = randomInt(10);
num dir = randomInt(4);
str blockID = "minecraft:pink_petals";

if(dir == 0) blockID = blockID + "[facing=north";
else if(dir == 1) blockID = blockID + "[facing=east";
else if(dir == 2) blockID = blockID + "[facing=west";
else if(dir == 3) blockID = blockID + "[facing=south";
else blockID = blockID + "[facing=south";

if(flowers <= 0.5) blockID = blockID + ",flower_amount=4]";
else if(flowers <= 0.6) blockID = blockID + ",flower_amount=3]";
else if(flowers <= 0.8) blockID = blockID + ",flower_amount=2]";
else if(flowers <= 0.9) blockID = blockID + ",flower_amount=1]";
else blockID = blockID + ",flower_amount=1]";

// Place flowers
block(0, 0, 0, blockID);