Commit b053acb9 authored by mercury233's avatar mercury233 Committed by GitHub

fix interpreter.cpp (#614)

parent 9afa817c
...@@ -673,6 +673,6 @@ duel* interpreter::get_duel_info(lua_State * L) { ...@@ -673,6 +673,6 @@ duel* interpreter::get_duel_info(lua_State * L) {
std::memcpy(&pduel, lua_getextraspace(L), LUA_EXTRASPACE); std::memcpy(&pduel, lua_getextraspace(L), LUA_EXTRASPACE);
return pduel; return pduel;
} }
inline bool interpreter::is_load_script(card_data data) { bool interpreter::is_load_script(card_data data) {
return !(data.type & TYPE_NORMAL) || (data.type & TYPE_PENDULUM); return !(data.type & TYPE_NORMAL) || (data.type & TYPE_PENDULUM);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment