Skip to content
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
18 changes: 18 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ set(HEADERS
util.h
quadbase.h
xrms.h
features/stronghold.h
loot/items.h
loot/logging.h
loot/loot_functions.h
Expand Down Expand Up @@ -84,6 +85,14 @@ set(HEADERS
loot/loot_tables/shipwreck_treasure_1_13.h
loot/loot_tables/shipwreck_treasure_1_20.h
loot/loot_tables/shipwreck_treasure_1_21_11.h
loot/loot_tables/stronghold_corridor_1_13.h
loot/loot_tables/stronghold_corridor_1_18.h
loot/loot_tables/stronghold_corridor_1_20.h
loot/loot_tables/stronghold_corridor_1_21_6.h
loot/loot_tables/stronghold_corridor_1_21_9.h
loot/loot_tables/stronghold_crossing_1_13.h
loot/loot_tables/stronghold_library_1_13.h
loot/loot_tables/stronghold_library_1_20.h
loot/cjson/cJSON.h
)
set(SOURCES
Expand All @@ -97,6 +106,7 @@ set(SOURCES
util.c
quadbase.c
xradv.c
features/stronghold.c
loot/items.c
loot/loot_functions.c
loot/loot_tables.c
Expand Down Expand Up @@ -151,6 +161,14 @@ set(SOURCES
loot/loot_tables/shipwreck_treasure_1_13.c
loot/loot_tables/shipwreck_treasure_1_20.c
loot/loot_tables/shipwreck_treasure_1_21_11.c
loot/loot_tables/stronghold_corridor_1_13.c
loot/loot_tables/stronghold_corridor_1_18.c
loot/loot_tables/stronghold_corridor_1_20.c
loot/loot_tables/stronghold_corridor_1_21_6.c
loot/loot_tables/stronghold_corridor_1_21_9.c
loot/loot_tables/stronghold_crossing_1_13.c
loot/loot_tables/stronghold_library_1_13.c
loot/loot_tables/stronghold_library_1_20.c
loot/cjson/cJSON.c
)

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Below is a list of all the major additions:

- Ore generation (1.13+).
- Ore vein generation (1.18+).
- Structure loot support (1.13+). At the time of writing, the following structures are supported: Bastions (limited), Buried Treasures, Desert Pyramids, End Cities, Igloos, Jungle Temples, Nether Fortresses, Pillager Outposts, Ruined Portals (OW/NE) and Shipwrecks.
- Stronghold generation (1.8+).
- Structure loot support (1.13+). At the time of writing, the following structures are supported: Bastions (limited), Buried Treasures, Desert Pyramids, End Cities, Igloos, Jungle Temples, Nether Fortresses, Pillager Outposts, Ruined Portals (OW/NE), Shipwrecks and Strongholds.
- Fast Xoroshiro128++ state advancement.
- Canyon/cave carvers (1.13+).
- Terrain generation (1.18+).
Expand Down
Loading