diff options
author | Haru <haru@dotalux.com> | 2014-11-14 21:17:16 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-14 21:17:16 +0100 |
commit | 2e6d71cf134c1415a626cb1adddcc30428d467b5 (patch) | |
tree | e6bd8e5f292976aa24a6165ee0ca4a399504ccf2 | |
parent | fe6599de91dbab781e37fbded66cfecb685041cf (diff) | |
download | hercules-2e6d71cf134c1415a626cb1adddcc30428d467b5.tar.gz hercules-2e6d71cf134c1415a626cb1adddcc30428d467b5.tar.bz2 hercules-2e6d71cf134c1415a626cb1adddcc30428d467b5.tar.xz hercules-2e6d71cf134c1415a626cb1adddcc30428d467b5.zip |
Fixed a typo in npc/custom/breeder.txt
Special thanks to Ridley8819
Signed-off-by: Haru <haru@dotalux.com>
-rw-r--r-- | npc/custom/breeder.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/custom/breeder.txt b/npc/custom/breeder.txt index 40d94d99d..db57510f7 100644 --- a/npc/custom/breeder.txt +++ b/npc/custom/breeder.txt @@ -43,7 +43,7 @@ prontera,124,201,1 script Universal Rental NPC 4_F_JOB_BLACKSMITH,{ setcart; } else if (!checkfalcon() && getskilllv(HT_FALCON) && !checkwug()) { setfalcon; - } else if (checkmount() == MOUNT_PECO && getskilllv(KN_RIDING)) { + } else if (checkmount() != MOUNT_PECO && getskilllv(KN_RIDING)) { setmount; // Peco or Dragon } else if (checkmount() != MOUNT_MADO && getskilllv(NC_MADOLICENCE)) { setmount(MOUNT_MADO); |