summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
Diffstat (limited to 'src/script')
-rw-r--r--src/script/lua_api/l_storage.cpp5
-rw-r--r--src/script/lua_api/l_storage.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/script/lua_api/l_storage.cpp b/src/script/lua_api/l_storage.cpp
index 2a2b35a31..caa1a5551 100644
--- a/src/script/lua_api/l_storage.cpp
+++ b/src/script/lua_api/l_storage.cpp
@@ -58,6 +58,11 @@ StorageRef::StorageRef(ModMetadata *object):
{
}
+StorageRef::~StorageRef()
+{
+ delete m_object;
+}
+
void StorageRef::create(lua_State *L, ModMetadata *object)
{
StorageRef *o = new StorageRef(object);
diff --git a/src/script/lua_api/l_storage.h b/src/script/lua_api/l_storage.h
index f8d102d04..bfcf5ef38 100644
--- a/src/script/lua_api/l_storage.h
+++ b/src/script/lua_api/l_storage.h
@@ -50,7 +50,7 @@ private:
public:
StorageRef(ModMetadata *object);
- ~StorageRef() = default;
+ ~StorageRef();
static void Register(lua_State *L);
static void create(lua_State *L, ModMetadata *object);