diff --git a/src/item_builder.c b/src/item_builder.c index 87ff930..920ba32 100644 --- a/src/item_builder.c +++ b/src/item_builder.c @@ -51,7 +51,7 @@ eat_flesh(Item *item, Player *player) static void drink_health(Item *item, Player *player) { - player->potion_sips += item->value; + player->potion_sips += (int) item->value; gui_log("You collect %u sips of health", (unsigned int) item->value); }