mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-05 15:55:45 +00:00
f3272c941f
The radius for being in combat with the player is fAlarmDistance, which looked like the only pertinent thing.
26 lines
724 B
C++
26 lines
724 B
C++
#include "actionrepair.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
#include "../mwbase/world.hpp"
|
|
#include "../mwworld/player.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
ActionRepair::ActionRepair(const Ptr &item)
|
|
: Action(false, item)
|
|
{
|
|
}
|
|
|
|
void ActionRepair::executeImp (const Ptr& actor)
|
|
{
|
|
if(MWBase::Environment::get().getWorld()->getPlayer().isInCombat()) {
|
|
MWBase::Environment::get().getWindowManager()->messageBox("#{sInventoryMessage2}");
|
|
return;
|
|
}
|
|
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Repair);
|
|
MWBase::Environment::get().getWindowManager()->startRepairItem(getTarget());
|
|
}
|
|
}
|