mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
29 lines
714 B
C++
29 lines
714 B
C++
#include "actionrepair.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
#include "../mwbase/world.hpp"
|
|
#include "../mwworld/player.hpp"
|
|
#include "../mwmechanics/actorutil.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionRepair::ActionRepair(const Ptr &item)
|
|
: Action(false, item)
|
|
{
|
|
}
|
|
|
|
void ActionRepair::executeImp (const Ptr& actor)
|
|
{
|
|
if (actor != MWMechanics::getPlayer())
|
|
return;
|
|
|
|
if(MWMechanics::isPlayerInCombat()) {
|
|
MWBase::Environment::get().getWindowManager()->messageBox("#{sInventoryMessage2}");
|
|
return;
|
|
}
|
|
|
|
MWBase::Environment::get().getWindowManager()->startRepairItem(getTarget());
|
|
}
|
|
}
|