From 0a80e45454009ad570febdf422282695c77b04a1 Mon Sep 17 00:00:00 2001 From: Integer Limit <103940576+IntegerLimit@users.noreply.github.com> Date: Wed, 14 Aug 2024 18:04:29 +1000 Subject: [PATCH] Update Labs to v0.8.11 (#908) [EXPAND] [[messages]] messageTitle = "Fixes World Ticking by Multiple Ticks at a Time (#908)" messageBody = ''' [BUG] [IGNORE] checks = { compareBefore = "1.7-beta-6" } [IGNORE] [DETAILS] detail = "Fixes #896 and Related Issues" [DETAILS] ''' [[messages]] messageTitle = "Fixes Sorting of Actually Additions Crates (#908)" messageBody = ''' [BUG] [IGNORE] checks = { compareBefore = "1.7-beta-6" } [IGNORE] ''' [[messages]] messageTitle = "Fixes Usage of Thermal's Tome of Experience (#908)" messageBody = ''' [BUG] [IGNORE] checks = { compareBefore = "1.7-beta-6" } [IGNORE] ''' [EXPAND] --- manifest.json | 2 +- overrides/config/nomilabs.cfg | 26 +++++++------------ .../Main/General/Misc/tooltips.groovy | 2 +- 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/manifest.json b/manifest.json index a009d98..09a5919 100644 --- a/manifest.json +++ b/manifest.json @@ -720,7 +720,7 @@ }, { "projectID": 932060, - "fileID": 5620594, + "fileID": 5624443, "required": true }, { diff --git a/overrides/config/nomilabs.cfg b/overrides/config/nomilabs.cfg index 5e98033..d42a240 100755 --- a/overrides/config/nomilabs.cfg +++ b/overrides/config/nomilabs.cfg @@ -7,15 +7,6 @@ ########################################################################################################## advanced { - # Amount of XP Per Level, for Linear XP Scaling. - # Used for Linear XP Scaling in Actually Additions and EIO Machines. - # MUST be used in conjunction with UT's Linear XP Scaling Config, else weird issues may happen! - # Enter a value of 0 for default. - # [default: 0] - # Min: 0 - # Max: 2147483647 - I:aaEioLinearXp=25 - # Whether to allow other pack modes, other than 'normal' and 'expert'. # If this is set to false, the game will crash if other modes are found. # Only set this to false if you are sure of what you are doing. @@ -127,6 +118,16 @@ advanced { # NOMI S:languageModifyOption=NOMI + # Amount of XP Per Level, for Linear XP Scaling. + # Used for Linear XP Scaling in Actually Additions, EIO and Thermal Items/Machines. + # Note that for Thermal, XP fixes are only applied for the Tome of Knowledge, not for any machines associated with Essence of Knowledge. + # MUST be used in conjunction with UT's Linear XP Scaling Config, else weird issues may happen! + # Enter a value of 0 for default. + # [default: 0] + # Min: 0 + # Max: 2147483647 + I:otherModsLinearXp=25 + # Whether to enable Substitutions for the Server Properties MOTD. # Substitutions: {version} for the Modpack Formatted Version (from 'nomilabs-version.cfg'), {mode} for the Modpack Formatted Mode (from LabsModeHelper & the PackMode Mod). # Note: Only the First Substitution in the String is Replaced! @@ -155,11 +156,6 @@ advanced { S:serverSideMethods < > - # Whether to enable Syncing between Dimensions. - # This means that changing difficulty, time, spawn point or other properties in one dimension will sync to all dimensions. - # [default: false] - B:syncDimProperties=true - ########################################################################################################## # fluid registry #--------------------------------------------------------------------------------------------------------# @@ -672,5 +668,3 @@ content { } } - - diff --git a/overrides/groovy/postInit/Post-Initial/Main/General/Misc/tooltips.groovy b/overrides/groovy/postInit/Post-Initial/Main/General/Misc/tooltips.groovy index 259b74a..bcbe8be 100644 --- a/overrides/groovy/postInit/Post-Initial/Main/General/Misc/tooltips.groovy +++ b/overrides/groovy/postInit/Post-Initial/Main/General/Misc/tooltips.groovy @@ -250,7 +250,7 @@ addTooltip(item('deepmoblearning:glitch_fragment'), translatable('nomiceu.toolti // Matter for (MetadataLivingMatter matter : MetadataManager.livingMatterMetadataList) { // XP is as a Percent of One Level - int xpPercent = (matter.xpValue / LabsConfig.advanced.aaEioLinearXp) * 100 + int xpPercent = (matter.xpValue / LabsConfig.advanced.otherModsLinearXp) * 100 if (xpPercent == 100) addTooltip(matter.itemStack, translatable('nomiceu.tooltip.dme.matter.full_level')) else