diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/plants/Plant.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/plants/Plant.java index b2b28ed1d..c82751088 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/plants/Plant.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/plants/Plant.java @@ -171,11 +171,11 @@ public abstract class Plant implements Bundlable { super.execute (hero, action ); if (action.equals( AC_PLANT )) { - - hero.spend( TIME_TO_PLANT ); + hero.busy(); ((Seed)detach( hero.belongings.backpack )).onThrow( hero.pos ); - + hero.spend( TIME_TO_PLANT ); + hero.sprite.operate( hero.pos ); }