forked from 2009Scape/Server
Removed door dialogue in the stronghold of security
No need to explain how to secure your account over and over, we aren't kids.
This commit is contained in:
parent
6cca2d1bed
commit
6ed0ead8a7
1 changed files with 4 additions and 0 deletions
|
|
@ -223,12 +223,16 @@ public final class StrongHoldSecurityPlugin extends MapZone implements Plugin<Ob
|
|||
* @param object the object.
|
||||
*/
|
||||
private static void handleDoor(final Player player, final Scenery object) {
|
||||
openDoor(player, object);
|
||||
return;
|
||||
/* Snowscape custom: no dialogue in the stronghold
|
||||
final boolean force = isForced(player, object);
|
||||
if (force || RandomFunction.random(40) < 2) {
|
||||
openDoor(player, object);
|
||||
return;
|
||||
}
|
||||
player.getDialogueInterpreter().open("strong-hold", object);
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue