From b64541c7ef4b9756015c499e6760afe3664de111 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Mon, 28 Sep 2009 21:23:10 -0500 Subject: Implement feature [2584052]: Apply caotto's patch in [2869396] (based on work done by castamir) to seal the four specific hell portals instead of the single hell vestibule portal when the player picks up the orb. --- crawl-ref/source/terrain.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/terrain.cc') diff --git a/crawl-ref/source/terrain.cc b/crawl-ref/source/terrain.cc index 86da9f5936..22c48316fa 100644 --- a/crawl-ref/source/terrain.cc +++ b/crawl-ref/source/terrain.cc @@ -103,7 +103,10 @@ bool grid_sealable_portal(dungeon_feature_type grid) { switch (grid) { - case DNGN_ENTER_HELL: + case DNGN_ENTER_COCYTUS: + case DNGN_ENTER_DIS: + case DNGN_ENTER_GEHENNA: + case DNGN_ENTER_TARTARUS: case DNGN_ENTER_ABYSS: case DNGN_ENTER_PANDEMONIUM: case DNGN_ENTER_LABYRINTH: -- cgit v1.2.3-54-g00ecf