58 lines
2.7 KiB
INI
58 lines
2.7 KiB
INI
# Configuration file
|
|
|
|
general {
|
|
|
|
##########################################################################################################
|
|
# server_settings
|
|
#--------------------------------------------------------------------------------------------------------#
|
|
# These options require a server restart on dedicated servers
|
|
##########################################################################################################
|
|
|
|
server_settings {
|
|
# Allow merging different enchantments in the enchantment library
|
|
B:allowEnchantMerging=true
|
|
|
|
# Allow splitting enchanted books with multiple enchantments when inserting into the enchantment library
|
|
B:allowEnchantSplitting=true
|
|
|
|
# Attempts to fix the ItemStack cache hash collision issues introduced in AE2UEL v0.56.6 by changing the vanilla NBT hashCode functions using a mixin.
|
|
B:enableAE2UELHashFixMixin=true
|
|
S:enchLevelTranslation=ROMAN_NUMERALS
|
|
|
|
# The stack size of enchanted books. Set to 0 to not overwrite it at all. Values over 64 will not really work.
|
|
# Min: 0
|
|
# Max: 2147483647
|
|
I:enchantedBookStackSize=0
|
|
|
|
# Optimizes common item handler operations for the enchlib. This should have no impact on performance for non-enchlib item handlers, but a pretty big impact for enchlib. The mixins themselves should be compatible with everything.
|
|
B:optimizeItemHandler=true
|
|
}
|
|
|
|
##########################################################################################################
|
|
# client_settings
|
|
#--------------------------------------------------------------------------------------------------------#
|
|
# These options are client-side only
|
|
##########################################################################################################
|
|
|
|
client_settings {
|
|
# Overwrites the enchantment level translation to fully support roman numerals (up to 3999) or use simple numbers. Can be NUMBERS, ROMAN_NUMERALS or VANILLA. Set to VANILLA to get vanilla behaviour / allow other mods to overwrite it.
|
|
# Valid values:
|
|
# NUMBERS
|
|
# ROMAN_NUMERALS
|
|
# VANILLA
|
|
S:enchLevelTranslation=ROMAN_NUMERALS
|
|
|
|
# Disabling this completely disables enchantment level translation. Only set this to false when the enchantment level translation mixin causes problems with other mods.
|
|
B:enchLevelTranslationEnabled=true
|
|
|
|
# Use the modified Conway-Wechsler system for showing enchantment Points
|
|
B:modified_conway_wechsler=false
|
|
|
|
# Shows tips on how to use the enchantment library in various tooltips in the GUI
|
|
B:show_tips=true
|
|
}
|
|
|
|
}
|
|
|
|
|