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]
This commit is contained in:
Integer Limit 2024-08-14 18:04:29 +10:00 committed by GitHub
parent aa7e6b30a6
commit 0a80e45454
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 18 deletions

View File

@ -720,7 +720,7 @@
},
{
"projectID": 932060,
"fileID": 5620594,
"fileID": 5624443,
"required": true
},
{

View File

@ -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 {
}
}

View File

@ -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