Skip to content

Commit

Permalink
reduce structure counts and add exclusion zone
Browse files Browse the repository at this point in the history
  • Loading branch information
IAFEnvoy committed Dec 11, 2024
1 parent 12227c5 commit a3c2ec6
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 37 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
// Architectury API. This is optional, and you can comment it out if you don't need it.
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"

modImplementation "maven.modrinth:uranus:iyDFizmU"
modImplementation "maven.modrinth:uranus:r83GL5c6"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

modCompileOnly "dev.emi:emi-fabric:${emi_version}:api"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 7824162,
"separation": 12,
"spacing": 16
"separation": 14,
"spacing": 20,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:ice_dragon_cave",
"iceandfire:lightning_dragon_cave"
]
}
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 3747893,
"separation": 10,
"spacing": 16
"separation": 12,
"spacing": 18,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:ice_dragon_roost",
"iceandfire:lightning_dragon_roost"
]
}
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 14032493,
"separation": 12,
"spacing": 16
"separation": 14,
"spacing": 20,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:fire_dragon_cave",
"iceandfire:lightning_dragon_cave"
]
}
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 1897443,
"separation": 10,
"spacing": 16
"separation": 12,
"spacing": 18,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:fire_dragon_roost",
"iceandfire:lightning_dragon_roost"
]
}
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 8901237,
"separation": 12,
"spacing": 16
"separation": 14,
"spacing": 20,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:fire_dragon_cave",
"iceandfire:ice_dragon_cave"
]
}
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 9031232,
"separation": 10,
"spacing": 16
"separation": 12,
"spacing": 18,
"exclusion_zone": {
"chunk_count": 6,
"other_set": [
"iceandfire:fire_dragon_roost",
"iceandfire:ice_dragon_roost"
]
}
},
"structures": [
{
Expand Down
1 change: 0 additions & 1 deletion common/src/main/resources/iceandfire.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"PointOfInterestTypesAccessor"
],
"client": [
"EntityRenderersMixin",
"GameRendererMixin",
"InGameHudMixin",
"LivingEntityRendererMixin",
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
common(project(path: ':common', configuration: 'namedElements')) { transitive false }
shadowBundle project(path: ':common', configuration: 'transformProductionFabric')

modImplementation "maven.modrinth:uranus:iyDFizmU"
modImplementation "maven.modrinth:uranus:r83GL5c6"
modImplementation "maven.modrinth:jupiter:nhqjUZZy"

// CCA
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.0"))
implementation(include("io.github.llamalad7:mixinextras-forge:0.2.0"))

modImplementation "maven.modrinth:uranus:ZOhc1xM8"
modImplementation "maven.modrinth:uranus:OWlhs81d"
modImplementation "maven.modrinth:jupiter:quscWB5K"

modLocalRuntime "dev.emi:emi-forge:${emi_version}"
Expand Down

0 comments on commit a3c2ec6

Please sign in to comment.