blob: 958c0e0eadd34c1649639026cb31137b51f6b5ae (
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
37
38
39
|
#pragma once
#include "ItemFood.h"
#include "../World.h"
class cItemSoupHandler :
public cItemFoodHandler
{
typedef cItemFoodHandler super;
public:
cItemSoupHandler(int a_ItemType, FoodInfo a_FoodInfo) :
super(a_ItemType, a_FoodInfo)
{
}
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item) 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;
}
};
|