1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-04-01 20:06:41 +00:00

Removed dialogue fix again, now on separate branch

This commit is contained in:
scrawl 2013-02-17 03:02:47 +01:00
parent df8e502f8c
commit 373de19aee

View file

@ -11,11 +11,7 @@ namespace MWWorld
bool ActionTalk::executeImp (const Ptr& actor) bool ActionTalk::executeImp (const Ptr& actor)
{ {
if (MWBase::Environment::get().getInputManager ()->getControlSwitch ("playercontrols")) MWBase::Environment::get().getDialogueManager()->startDialogue (getTarget());
{ return true;
MWBase::Environment::get().getDialogueManager()->startDialogue (getTarget());
return true;
}
return false;
} }
} }