1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 16:19:54 +00:00
openmw-tes3mp/apps/openmw/mwworld/actiontalk.cpp

26 lines
706 B
C++
Raw Normal View History

#include "actiontalk.hpp"
#include "../mwbase/environment.hpp"
#include "../mwbase/windowmanager.hpp"
#include "../mwmechanics/actorutil.hpp"
namespace MWWorld
{
ActionTalk::ActionTalk (const Ptr& actor) : Action (false, actor) {}
2012-07-27 10:00:10 +00:00
void ActionTalk::executeImp (const Ptr& actor)
{
/*
Start of tes3mp change (major)
We need to be able to make actors start conversations with players, so reverse the check added
by 4118b20608b630b8d166d060a34c1234b80e378d here
*/
MWBase::Environment::get().getWindowManager()->pushGuiMode(MWGui::GM_Dialogue, getTarget());
/*
End of tes3mp change (major)
*/
}
}