mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
16 lines
289 B
C++
16 lines
289 B
C++
#include "actiontrap.hpp"
|
|
|
|
#include "../mwmechanics/spellcasting.hpp"
|
|
|
|
namespace MWWorld
|
|
{
|
|
|
|
void ActionTrap::executeImp(const Ptr &actor)
|
|
{
|
|
MWMechanics::CastSpell cast(mTrapSource, actor);
|
|
cast.cast(mSpellId);
|
|
|
|
mTrapSource.getCellRef().mTrap = "";
|
|
}
|
|
|
|
}
|