mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
22 lines
487 B
C++
22 lines
487 B
C++
#include "actioneat.hpp"
|
|
|
|
#include <components/esm3/loadskil.hpp>
|
|
|
|
#include "../mwmechanics/actorutil.hpp"
|
|
|
|
#include "class.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
void ActionEat::executeImp(const Ptr& actor)
|
|
{
|
|
if (actor.getClass().consume(getTarget(), actor) && actor == MWMechanics::getPlayer())
|
|
actor.getClass().skillUsageSucceeded(actor, ESM::Skill::Alchemy, 1);
|
|
}
|
|
|
|
ActionEat::ActionEat(const MWWorld::Ptr& object)
|
|
: Action(false, object)
|
|
{
|
|
}
|
|
}
|