diff options
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/CashShop_Functions.txt | 2 | ||||
-rw-r--r-- | npc/other/turbo_track.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/other/CashShop_Functions.txt b/npc/other/CashShop_Functions.txt index 76056cb52..1a2627d02 100644 --- a/npc/other/CashShop_Functions.txt +++ b/npc/other/CashShop_Functions.txt @@ -59,7 +59,7 @@ function script F_CashPartyCall { // - Reset players skills. Weight must be 0, options must be off. // - No arguments. function script F_CashReset { - if (Class != Job_Novice && Weight == 0 && !checkriding() && !checkfalcon() && !checkcart() && !ismounting()) { + if (Class != Job_Novice && Weight == 0 && !checkriding() && !checkfalcon() && !checkcart() && !hascashmount()) { resetskill; sc_end SC_ALL; if (countitem(12213)) delitem 12213,1; diff --git a/npc/other/turbo_track.txt b/npc/other/turbo_track.txt index 2d9b967d8..5cc10d624 100644 --- a/npc/other/turbo_track.txt +++ b/npc/other/turbo_track.txt @@ -4691,7 +4691,7 @@ alde_gld,186,199,3 script Turbo Track Guide#Entran 4_F_RACING,{ - script ::MountManager_turbo -1,{ set .@n$, "["+strnpcinfo(1)+"]"; mes .@n$; - if (ismounting()) { + if (hascashmount()) { mes "Please get off of that creature you're riding on."; mes "Then talk to me again."; close; |