Locked Menaphos gate (inaccessible area)

This commit is contained in:
Edie
2026-03-30 07:22:00 +00:00
committed by Ryan
parent 496285dfdd
commit df80d077ce
@@ -30,6 +30,7 @@ public class SophanemPlugin extends OptionHandler {
SceneryDefinition.forId(20275).getHandlers().put("option:climb-down", this); SceneryDefinition.forId(20275).getHandlers().put("option:climb-down", this);
SceneryDefinition.forId(20391).getHandlers().put("option:open", this); SceneryDefinition.forId(20391).getHandlers().put("option:open", this);
SceneryDefinition.forId(28514).getHandlers().put("option:open", this); SceneryDefinition.forId(28514).getHandlers().put("option:open", this);
SceneryDefinition.forId(20341).getHandlers().put("option:open", this);
return this; return this;
} }
@@ -53,6 +54,8 @@ public class SophanemPlugin extends OptionHandler {
} }
DoorActionHandler.handleDoor(player, (Scenery) node); DoorActionHandler.handleDoor(player, (Scenery) node);
break; break;
case 20341:
break;
} }
return true; return true;
} }