mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
25 lines
657 B
C++
25 lines
657 B
C++
#include "actionalchemy.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
#include "../mwbase/world.hpp"
|
|
|
|
#include "../mwworld/player.hpp"
|
|
#include "../mwmechanics/actorutil.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
void ActionAlchemy::executeImp (const Ptr& actor)
|
|
{
|
|
if (actor != MWMechanics::getPlayer())
|
|
return;
|
|
|
|
if(MWMechanics::isPlayerInCombat()) { //Ensure we're not in combat
|
|
MWBase::Environment::get().getWindowManager()->messageBox("#{sInventoryMessage3}");
|
|
return;
|
|
}
|
|
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Alchemy);
|
|
}
|
|
}
|