diff --git a/Server/src/main/content/region/desert/sophanem/handlers/SophanemPlugin.java b/Server/src/main/content/region/desert/sophanem/handlers/SophanemPlugin.java index 219c1caa9..60cfad2e1 100644 --- a/Server/src/main/content/region/desert/sophanem/handlers/SophanemPlugin.java +++ b/Server/src/main/content/region/desert/sophanem/handlers/SophanemPlugin.java @@ -30,6 +30,7 @@ public class SophanemPlugin extends OptionHandler { SceneryDefinition.forId(20275).getHandlers().put("option:climb-down", this); SceneryDefinition.forId(20391).getHandlers().put("option:open", this); SceneryDefinition.forId(28514).getHandlers().put("option:open", this); + SceneryDefinition.forId(20341).getHandlers().put("option:open", this); return this; } @@ -53,6 +54,8 @@ public class SophanemPlugin extends OptionHandler { } DoorActionHandler.handleDoor(player, (Scenery) node); break; + case 20341: + break; } return true; }