mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
30 lines
692 B
C++
30 lines
692 B
C++
#include "actionsoulgem.hpp"
|
|
|
|
#include "../mwbase/windowmanager.hpp"
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "../mwmechanics/actorutil.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
|
|
ActionSoulgem::ActionSoulgem(const Ptr &object)
|
|
: Action(false, object)
|
|
{
|
|
|
|
}
|
|
|
|
void ActionSoulgem::executeImp(const Ptr &actor)
|
|
{
|
|
if (actor != MWMechanics::getPlayer())
|
|
return;
|
|
|
|
if(MWMechanics::isPlayerInCombat()) { //Ensure we're not in combat
|
|
MWBase::Environment::get().getWindowManager()->messageBox("#{sInventoryMessage5}");
|
|
return;
|
|
}
|
|
MWBase::Environment::get().getWindowManager()->showSoulgemDialog(getTarget());
|
|
}
|
|
|
|
|
|
}
|