v0.9.3: fixed seeds disappearing after falling with barren land challenge
This commit is contained in:
parent
e076c02c5a
commit
6c8a9de4b6
|
@ -23,6 +23,7 @@ package com.shatteredpixel.shatteredpixeldungeon.scenes;
|
|||
|
||||
import com.shatteredpixel.shatteredpixeldungeon.Assets;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.Badges;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.Challenges;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.SPDSettings;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
|
||||
|
@ -397,7 +398,7 @@ public class GameScene extends PixelScene {
|
|||
int pos = Dungeon.level.randomRespawnCell( null );
|
||||
if (item instanceof Potion) {
|
||||
((Potion)item).shatter( pos );
|
||||
} else if (item instanceof Plant.Seed) {
|
||||
} else if (item instanceof Plant.Seed && !Dungeon.isChallenged(Challenges.NO_HERBALISM)) {
|
||||
Dungeon.level.plant( (Plant.Seed)item, pos );
|
||||
} else if (item instanceof Honeypot) {
|
||||
Dungeon.level.drop(((Honeypot) item).shatter(null, pos), pos);
|
||||
|
|
Loading…
Reference in New Issue
Block a user