v0.6.0: renamed garden room to foliage room

This commit is contained in:
Evan Debenham 2017-05-16 15:48:23 -04:00
parent dc3a79ff1f
commit b2adb24fb8
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ import com.shatteredpixel.shatteredpixeldungeon.plants.BlandfruitBush;
import com.shatteredpixel.shatteredpixeldungeon.plants.Sungrass; import com.shatteredpixel.shatteredpixeldungeon.plants.Sungrass;
import com.watabou.utils.Random; import com.watabou.utils.Random;
public class GardenRoom extends SpecialRoom { public class FoliageRoom extends SpecialRoom {
public void paint( Level level ) { public void paint( Level level ) {

View File

@ -60,7 +60,7 @@ public class SpecialRoom extends Room {
} }
private static final ArrayList<Class<? extends SpecialRoom>> ALL_SPEC = new ArrayList<>( Arrays.asList( private static final ArrayList<Class<? extends SpecialRoom>> ALL_SPEC = new ArrayList<>( Arrays.asList(
WeakFloorRoom.class, MagicWellRoom.class, CryptRoom.class, PoolRoom.class, GardenRoom.class, LibraryRoom.class, ArmoryRoom.class, WeakFloorRoom.class, MagicWellRoom.class, CryptRoom.class, PoolRoom.class, FoliageRoom.class, LibraryRoom.class, ArmoryRoom.class,
TreasuryRoom.class, TrapsRoom.class, StorageRoom.class, StatueRoom.class, LaboratoryRoom.class, VaultRoom.class TreasuryRoom.class, TrapsRoom.class, StorageRoom.class, StatueRoom.class, LaboratoryRoom.class, VaultRoom.class
) ); ) );
@ -80,7 +80,7 @@ public class SpecialRoom extends Room {
} }
if (Dungeon.isChallenged( Challenges.NO_HERBALISM )){ if (Dungeon.isChallenged( Challenges.NO_HERBALISM )){
//sorry warden, no lucky sungrass or blandfruit seeds for you! //sorry warden, no lucky sungrass or blandfruit seeds for you!
runSpecials.remove( GardenRoom.class ); runSpecials.remove( FoliageRoom.class );
} }
pitNeededDepth = -1; pitNeededDepth = -1;