1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-21 11:09:43 +00:00

is_automagical false line for ActorStore

This commit is contained in:
Mads Buvik Sandvei 2023-05-23 22:55:22 +02:00
parent 97ea626ba2
commit 40170d8953

View file

@ -137,12 +137,8 @@ namespace sol
struct is_automagical<ESM::MagicEffect> : std::false_type
{
};
template <>
struct is_automagical<MWLua::ActorSpells> : std::false_type
{
};
template <>
struct is_automagical<MWLua::ActorActiveSpells> : std::false_type
template <typename T>
struct is_automagical<MWLua::ActorStore<T>> : std::false_type
{
};
}