diff options
-rw-r--r-- | src/map/atcommand.c | 2 | ||||
-rw-r--r-- | src/map/status.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index e656d4eb1..25fc3182d 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2526,7 +2526,7 @@ ACMD_FUNC(skillpoint) *------------------------------------------*/ ACMD_FUNC(zeny) { - int zeny, new_zeny; + int zeny; nullpo_retr(-1, sd); if (!message || !*message || (zeny = atoi(message)) == 0) { diff --git a/src/map/status.c b/src/map/status.c index 802a1c023..a7c14dcaf 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -9412,6 +9412,9 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const clif_status_load(bl, SI_KYOUGAKU, 0); // Avoid client crash clif_status_load(bl, SI_ACTIVE_MONSTER_TRANSFORM, 0); break; + case SC_INTRAVISION: + calc_flag = SCB_ALL;/* required for overlapping */ + break; } opt_flag = 1; |