-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4959 from SidPrinceDesFlammes/1.18.2
Ice and Fire 1.20.1 port
- Loading branch information
Showing
636 changed files
with
7,000 additions
and
6,793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Sets default memory used for gradle commands. Can be overridden by user or command line properties. | ||
# This is required to provide enough memory for the Minecraft decompilation process. | ||
org.gradle.jvmargs=-Xmx3G | ||
org.gradle.daemon=false | ||
org.gradle.daemon=false | ||
|
||
mc_version=1.20.1 | ||
jei_version=15.2.0.25 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
maven { | ||
name = 'NeoForged' | ||
url = 'https://maven.neoforged.net/releases' | ||
} | ||
} | ||
} | ||
|
||
plugins { | ||
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' | ||
} |
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
src/generated/resources/assets/minecraft/atlases/chests.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"sources": [ | ||
{ | ||
"type": "minecraft:single", | ||
"resource": "iceandfire:models/ghost/ghost_chest" | ||
}, | ||
{ | ||
"type": "minecraft:single", | ||
"resource": "iceandfire:models/ghost/ghost_chest_left" | ||
}, | ||
{ | ||
"type": "minecraft:single", | ||
"resource": "iceandfire:models/ghost/ghost_chest_right" | ||
} | ||
] | ||
} |
30 changes: 30 additions & 0 deletions
30
src/generated/resources/data/iceandfire/forge/biome_modifier/iaf_features.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"type": "iceandfire:iaf_features", | ||
"features": [ | ||
"iceandfire:fire_dragon_roost", | ||
"iceandfire:ice_dragon_roost", | ||
"iceandfire:lightning_dragon_roost", | ||
"iceandfire:fire_dragon_cave", | ||
"iceandfire:ice_dragon_cave", | ||
"iceandfire:lightning_dragon_cave", | ||
"iceandfire:cyclops_cave", | ||
"iceandfire:pixie_village", | ||
"iceandfire:siren_island", | ||
"iceandfire:hydra_cave", | ||
"iceandfire:myrmex_hive_desert", | ||
"iceandfire:myrmex_hive_jungle", | ||
"iceandfire:spawn_death_worm", | ||
"iceandfire:spawn_dragon_skeleton_lightning", | ||
"iceandfire:spawn_dragon_skeleton_fire", | ||
"iceandfire:spawn_dragon_skeleton_ice", | ||
"iceandfire:spawn_hippocampus", | ||
"iceandfire:spawn_sea_serpent", | ||
"iceandfire:spawn_stymphalian_bird", | ||
"iceandfire:spawn_wandering_cyclops", | ||
"iceandfire:silver_ore", | ||
"iceandfire:sapphire_ore", | ||
"iceandfire:fire_lily", | ||
"iceandfire:frost_lily", | ||
"iceandfire:lightning_lily" | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
src/generated/resources/data/iceandfire/tags/banner_pattern/pattern_item/amphithere.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"values": [ | ||
"iceandfire:amphithere" | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
src/generated/resources/data/iceandfire/tags/banner_pattern/pattern_item/bird.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"values": [ | ||
"iceandfire:bird" | ||
] | ||
} |
Oops, something went wrong.