2011Scape / game

An open-source emulator that targets RuneTek-5, client revision 667 (October 4th, 2011)
http://2011scape.com
Apache License 2.0
32 stars 131 forks source link

Lost city ladder monk dialogue and sends "Nothing interesting happens" #508

Open JayArrowz opened 6 months ago

JayArrowz commented 6 months ago

Needs a return https://github.com/2011Scape/game/pull/504/files#diff-f4590da14e2f7e8f686cde1a30fccb64b9d33e7b7011b5b5b23f9abc510d49e4R55

  if (currentStage == LostCity.ENTRANA_DUNGEON) { //TRUE
        player.queue{
            monkDialogue(this)
        }
        //ADD RETURN
    }
    if (currentStage > LostCity.ENTRANA_DUNGEON) {
        dungeonEntrance(player)
    }
    else { //TRUE ALSO
        player.message("Nothing interesting happens.")
    }