From 11a13d72ddc4f5d5986b19757d7203a3a13ede43 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 29 Apr 2015 13:22:03 -0400 Subject: [PATCH] v0.3.0: removed message for a few buffs that didn't need it. --- .../shatteredpixeldungeon/actors/buffs/MagicalSleep.java | 4 ---- .../shatteredpixeldungeon/actors/buffs/Shadows.java | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/MagicalSleep.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/MagicalSleep.java index 8068c002b..fdf76d624 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/MagicalSleep.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/MagicalSleep.java @@ -28,10 +28,6 @@ public class MagicalSleep extends Buff { private static final float STEP = 1f; public static final float SWS = 1.5f; - { - type = buffType.NEUTRAL; - } - @Override public boolean attachTo( Char target ) { if (super.attachTo( target ) && !target.immunities().contains(Sleep.class)) { diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java index 5ae4043fc..f24897949 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/buffs/Shadows.java @@ -29,6 +29,10 @@ public class Shadows extends Invisibility { protected float left; private static final String LEFT = "left"; + + { + type = buffType.SILENT; + } @Override public void storeInBundle( Bundle bundle ) {