You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
581 B
C++
21 lines
581 B
C++
#include "actionalchemy.hpp"
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
#include "../mwbase/windowmanager.hpp"
|
|
#include "../mwbase/world.hpp"
|
|
|
|
#include "../mwworld/player.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
void ActionAlchemy::executeImp (const Ptr& actor)
|
|
{
|
|
if(MWBase::Environment::get().getWorld()->getPlayer().isInCombat()) { //Ensure we're not in combat
|
|
MWBase::Environment::get().getWindowManager()->messageBox("#{sInventoryMessage3}");
|
|
return;
|
|
}
|
|
|
|
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Alchemy);
|
|
}
|
|
}
|