diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/tags/Tags.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/tags/Tags.kt index 8d67188da..33d5d407b 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/tags/Tags.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/tags/Tags.kt @@ -1,5 +1,6 @@ package ru.dbotthepony.mc.otm.datagen.tags +import net.minecraft.resources.ResourceLocation import net.minecraft.tags.BlockTags import net.minecraft.tags.ItemTags import net.minecraft.world.effect.MobEffects @@ -262,4 +263,9 @@ fun addTags(tagsProvider: TagsProvider) { MobEffects.DOLPHINS_GRACE, MobEffects.CONFUSION, ) + + tagsProvider.androidImmuneEffects.add( + ResourceLocation("rats", "plague"), + ResourceLocation("rats", "synesthesia"), + ) }