Skip to content

Commit

Permalink
Update Nomi-Labs from v0.6.20 to v0.6.21 (#687)
Browse files Browse the repository at this point in the history
Can now separately change all aspects of range.

Changes the default range distance to powers of 2.

Also fixes Mode-Only Multiblock Structures showing up in the other mode.

/* Git/Changelog Stuff */

[FIXUP]
sha = "352cd2268722ef9240c41ff93fe89880ae9f28d1"
newTitle = "Effortless Building Enhancements"
newBody = '''
[FEATURE]
[DETAILS]
details = [
"Makes Reach, Placement Reach and Max Blocks Placed Powers of 2",
"Clears Up Reach Upgrade Tooltips and Messages",
]
[DETAILS]
'''
changeFixes = false
[FIXUP]

[EXPAND]
[[messages]]
messageTitle = "Fixes Mode-Only Multiblock Structures Showing in Other Mode (#687)"
messageBody = '''
[BUG]
[IGNORE]
checks = { compareNot = "1.7-alpha-3" } # Only apply this if the commit being compared against is 1.7-alpha-3
[IGNORE]
'''

[[messages]]
messageBody = '''
[IGNORE]
checks = { compareAfter = "1.7-alpha-3" } # Only apply this if the commit being compared against is before 1.7-alpha-3
[IGNORE]

[COMBINE]
commit = "352cd2268722ef9240c41ff93fe89880ae9f28d1"
[COMBINE]
'''

[[messages]]
messageTitle = "Effortless Building Enhancements"
messageBody = '''
[IGNORE]
checks = { compareBefore = "1.7-alpha-3" } # Only apply this if the commit being compared against 1.7-alpha-3 or older
[IGNORE]

[FEATURE]
[DETAILS]
details = [
"Makes Reach, Placement Reach and Max Blocks Placed Powers of 2",
"Clears Up Reach Upgrade Tooltips and Messages",
]
[DETAILS]
'''
[EXPAND]
  • Loading branch information
IntegerLimit committed Mar 27, 2024
1 parent fb863f5 commit 13fedf9
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 12 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Expand Up @@ -763,7 +763,7 @@
},
{
"projectID": 932060,
"fileID": 5194128,
"fileID": 5212620,
"required": true
},
{
Expand Down
10 changes: 5 additions & 5 deletions overrides/config/EffortlessBuilding.cfg
Expand Up @@ -8,21 +8,21 @@ reach {

# Maximum reach in creative
# Keep in mind that chunks need to be loaded to be able to place blocks inside.
I:maxReachCreative=211
I:maxReachCreative=256

# Maximum reach in survival without upgrades
# Reach upgrades are craftable consumables that permanently increase reach.
# Set to 0 to disable Effortless Building until the player has consumed a reach upgrade.
I:maxReachLevel0=24
I:maxReachLevel0=32

# Maximum reach in survival with one upgrade
I:maxReachLevel1=51
I:maxReachLevel1=64

# Maximum reach in survival with two upgrades
I:maxReachLevel2=104
I:maxReachLevel2=128

# Maximum reach in survival with three upgrades
I:maxReachLevel3=211
I:maxReachLevel3=256
}


Expand Down
62 changes: 56 additions & 6 deletions overrides/config/nomilabs.cfg 100755 → 100644
Expand Up @@ -14,11 +14,6 @@ advanced {
# [default: false]
B:allowOtherPackModes=false

# Whether to disable Advancements.
# Increases Load Speed, and reduces log errors.
# [default: false]
B:disableAdvancements=false

# Whether to disable the Narrator.
# Fixes Crashes in Arm Macs, in some very specific environments.
# If your game is crashing, try enabling this!
Expand Down Expand Up @@ -217,7 +212,7 @@ content {
# [default: true]
B:enableAdvancedRocketryIntegration=true

# Whether to enable ArchitectureCraft Integration, which adds new slope variants.
# Whether to enable ArchitectureCraft Integration, which adds new slope variants, and improves the GUI of the Sawbench.
# [default: true]
B:enableArchitectureCraftIntegration=true

Expand Down Expand Up @@ -268,11 +263,66 @@ content {
# Modifying Energy Core Structure with improvements, such as allowing blocks surrounding the structure.
# Adding a destructor to the energy core.
# Allow changing the speed of the builder.
# Allow disabling Fusion Recipes for Chaotic Upgrades, which are empty as none of the tools support it.
# If this option is disabled, then energy cores made whilst this was enabled may break!
# None of the below options work if this config is set to false.
# [default: true]
B:enableDraconicEvolutionIntegration=true
}

##########################################################################################################
# effortless building integration
#--------------------------------------------------------------------------------------------------------#
# Effortless Building Integration Settings
##########################################################################################################

"effortless building integration" {
# Max Reach Per Axis Without Upgrades.
# [default: 8]
I:axisReach0=8

# Max Reach Per Axis With 1 Upgrade.
# [default: 16]
I:axisReach1=16

# Max Reach Per Axis With 2 Upgrades.
# [default: 32]
I:axisReach2=32

# Max Reach Per Axis With 3 Upgrades.
# [default: 64]
I:axisReach3=64

# Max Reach Per Axis In Creative.
# [default: 2048]
I:axisReachCreative=2048

# Max Blocks Placed at Once Without Upgrades.
# [default: 256]
I:blocksPlaced0=256

# Max Blocks Placed at Once With 1 Upgrade.
# [default: 2048]
I:blocksPlaced1=2048

# Max Blocks Placed at Once With 2 Upgrades.
# [default: 16384]
I:blocksPlaced2=16384

# Max Blocks Placed at Once With 3 Upgrades.
# [default: 131072]
I:blocksPlaced3=131072

# Max Blocks Placed at Once In Creative.
# [default: 1048576]
I:blocksPlacedCreative=1048576

# Whether to enable Effortless Building Integration, which splits the parts of reach.
# None of the below options work if this config is set to false.
# [default: true]
B:enableEffortlessBuildingIntegration=true
}

}


0 comments on commit 13fedf9

Please sign in to comment.