diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java index 3ab9f2820..4aff54470 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Talent.java @@ -320,7 +320,7 @@ public enum Talent { Random.shuffle(grassCells); for (int cell : grassCells){ Char ch = Actor.findChar(cell); - if (ch != null){ + if (ch != null && ch.alignment == Char.Alignment.ENEMY){ Buff.affect(ch, Roots.class, 1f + hero.pointsInTalent(RESTORED_NATURE)); } if (Dungeon.level.map[cell] == Terrain.EMPTY ||