From b02115e16316fa89609733e4af6cfc52c0838d2b Mon Sep 17 00:00:00 2001 From: aleos89 Date: Thu, 28 Apr 2016 12:29:34 -0400 Subject: [PATCH] Updated Fresh Shrimp heal rate (fixes #1220) * Fresh Shrimp now heals 4% of max HP. --- 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 1b092d92d0..3fd090abb9 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -12753,7 +12753,7 @@ int status_change_timer(int tid, unsigned int tick, int id, intptr_t data) break; case SC_FRESHSHRIMP: if (--(sce->val4) >= 0) { - status_heal(bl, status->max_hp / 100, 0, 2); + status_heal(bl, status->max_hp * 4 / 100, 0, 2); sc_timer_next((10000 - ((sce->val1 - 1) * 1000)) + tick, status_change_timer, bl->id, data); } break;