Updated Fresh Shrimp heal rate (fixes #1220)

* Fresh Shrimp now heals 4% of max HP.
This commit is contained in:
aleos89 2016-04-28 12:29:34 -04:00
parent 7a3b3e5a8c
commit b02115e163

View File

@ -12753,7 +12753,7 @@ int status_change_timer(int tid, unsigned int tick, int id, intptr_t data)
break; break;
case SC_FRESHSHRIMP: case SC_FRESHSHRIMP:
if (--(sce->val4) >= 0) { 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); sc_timer_next((10000 - ((sce->val1 - 1) * 1000)) + tick, status_change_timer, bl->id, data);
} }
break; break;