From cb43e7dd1035f02230a34bec6231b42dd10c7f77 Mon Sep 17 00:00:00 2001 From: Nova Date: Tue, 7 Apr 2015 15:42:29 -0700 Subject: [PATCH] Fixed SC_ALL_RIDING for Rangers Due to this being OPTION_WUG before, Rangers who had a Warg but weren't riding it were unable to use Reins of Mount, but once you got on your Warg you were able to get on your mount while on a Warg. --- src/map/status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/status.c b/src/map/status.c index 62e6ff9281..6cf6123810 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -7799,7 +7799,7 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty break; case SC_ALL_RIDING: - if( !sd || !&sd->sc || sc->option&(OPTION_RIDING|OPTION_DRAGON|OPTION_WUG|OPTION_MADOGEAR) ) + if( !sd || !&sd->sc || sc->option&(OPTION_RIDING|OPTION_DRAGON|OPTION_WUGRIDER|OPTION_MADOGEAR) ) return 0; if( sc->data[type] ) { // Already mounted, just dismount.