diff options
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 8d24827ff..747547386 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6436,6 +6436,15 @@ int status_change_timer(int tid, unsigned int tick, int id, int data) return 0; } break; + case SC_BLIND: + if(sc->data[SC_FOGWALL].timer!= -1) + { //Blind lasts forever while you are standing on the fog. + sc->data[type].timer=add_timer( + 5000+tick, status_change_timer, + bl->id, data); + return 0; + } + break; } // default for all non-handled control paths |