blob: 9d0f5f36f764b1dcf3c20f933c23d9195f6ffefc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#pragma once
#include "ItemFood.h"
#include "../World.h"
class cItemSoupHandler final : public cItemFoodHandler
{
using Super = cItemFoodHandler;
public:
constexpr cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo) :
Super(a_ItemType, a_FoodInfo)
{
}
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) const override
{
// Skip over food handler, which does removal for us.
if (!cItemHandler::EatItem(a_Player, a_Item))
{
return false;
}
if (!a_Player->IsGameModeCreative())
{
a_Player->ReplaceOneEquippedItemTossRest(cItem(E_ITEM_BOWL));
}
return true;
}
};
|