diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 08aeb291a..1654d5dc6 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5278,7 +5278,10 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val sc->opt3 |= 4096; opt_flag = 0; break; - + case SC_KAITE: + sc->opt3 |= 8192; + opt_flag = 0; + break; //OPTION case SC_HIDING: sc->option |= OPTION_HIDE; @@ -5764,6 +5767,10 @@ int status_change_end( struct block_list* bl , int type,int tid ) sc->opt3 &= ~4096; opt_flag = 0; break; + case SC_KAITE: + sc->opt3 &= ~8192; + opt_flag = 0; + break; default: opt_flag = 0; } |