mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 12:18:27 +00:00
Fix for potential nullptr when using base lua class constructors in debug mode, also added eq.get_qglobals and removed automatic export of them (will do this for a lot of other automatic exports)
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@ class Lua_Raid : public Lua_Ptr<void>
|
||||
{
|
||||
typedef Raid NativeType;
|
||||
public:
|
||||
Lua_Raid() { }
|
||||
Lua_Raid() : Lua_Ptr(nullptr) { }
|
||||
Lua_Raid(Raid *d) : Lua_Ptr(d) { }
|
||||
virtual ~Lua_Raid() { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user