From ab8996edfe827cd6f935cea74ac8f9a654b14d0f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 8 Aug 2016 17:52:47 -0400 Subject: [PATCH] v0.4.1a: ring of elements now resists venom --- .../shatteredpixeldungeon/items/rings/RingOfElements.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java index 38f0faca1..bf29d9e2e 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfElements.java @@ -23,6 +23,7 @@ package com.shatteredpixel.shatteredpixeldungeon.items.rings; import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.ToxicGas; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Burning; import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Poison; +import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Venom; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Eye; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Warlock; import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.Yog; @@ -45,6 +46,7 @@ public class RingOfElements extends Ring { FULL.add( Burning.class ); FULL.add( ToxicGas.class ); FULL.add( Poison.class ); + FULL.add( Venom.class ); FULL.add( LightningTrap.Electricity.class ); FULL.add( Warlock.class ); FULL.add( Eye.class );