version bump & make default config more vanilla like.

This commit is contained in:
alexcrea 2024-02-03 13:26:25 +01:00
parent bd28c5b71c
commit f3fccadea2
3 changed files with 12 additions and 12 deletions

View file

@ -4,7 +4,7 @@ plugins {
} }
group = "io.delilaheve" group = "io.delilaheve"
version = "1.1.0" version = "1.1.2"
repositories { repositories {
mavenCentral() mavenCentral()

View file

@ -5,7 +5,7 @@
# - the conflict will count only if the user try to combine at least as # - the conflict will count only if the user try to combine at least as
# many conflicting enchantment as "maxEnchantmentBeforeConflict" # many conflicting enchantment as "maxEnchantmentBeforeConflict"
# #
#
# ---------------------------------------------------- # ----------------------------------------------------
# These restriction are about not allowing enchantment # These restriction are about not allowing enchantment
# on illegal items # on illegal items
@ -169,7 +169,7 @@ restriction_unbreaking:
# ---------------------------------------------------- # ----------------------------------------------------
# Now we have conflicts about enchantment Incompatibility # Now we have conflicts about enchantment Incompatibility
# We just filtered what item enchantments can be applied # We just filtered what item enchantments can be applied
# We will now will use enchanted_book as notAffectedGroups # notAffectedGroups is empty as we don't want anything to not respect theses rules
# maxEnchantmentBeforeConflict is set to 1 to only have 1 on those enchantment available # maxEnchantmentBeforeConflict is set to 1 to only have 1 on those enchantment available
# ---------------------------------------------------- # ----------------------------------------------------
@ -178,7 +178,7 @@ sword_enchant_conflict:
- bane_of_arthropods - bane_of_arthropods
- smite - smite
- sharpness - sharpness
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
protection_enchant_conflict: protection_enchant_conflict:
@ -187,48 +187,48 @@ protection_enchant_conflict:
- fire_protection - fire_protection
- projectile_protection - projectile_protection
- protection - protection
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
trident_conflict1: trident_conflict1:
enchantments: enchantments:
- channeling - channeling
- riptide - riptide
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
trident_conflict2: trident_conflict2:
enchantments: enchantments:
- loyalty - loyalty
- riptide - riptide
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
boot_conflict: boot_conflict:
enchantments: enchantments:
- depth_strider - depth_strider
- frost_walker - frost_walker
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
tool_conflict: tool_conflict:
enchantments: enchantments:
- fortune - fortune
- silk_touch - silk_touch
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
bow_conflict: bow_conflict:
enchantments: enchantments:
- mending - mending
- infinity - infinity
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1
crossbow_conflict: crossbow_conflict:
enchantments: enchantments:
- multishot - multishot
- piercing - piercing
notAffectedGroups: [enchanted_book] notAffectedGroups: []
maxEnchantmentBeforeConflict: 1 maxEnchantmentBeforeConflict: 1

View file

@ -1,7 +1,7 @@
main: io.delilaheve.UnsafeEnchants main: io.delilaheve.UnsafeEnchants
name: UnsafeEnchantsPlus name: UnsafeEnchantsPlus
prefix: UnsafeEnchants+ prefix: UnsafeEnchants+
version: 1.1.0 version: 1.1.2
description: Allow custom illegal enchantment description: Allow custom illegal enchantment
api-version: 1.18 api-version: 1.18
load: POSTWORLD load: POSTWORLD