Work on lua parser

This commit is contained in:
KimLS 2017-04-23 21:58:56 -07:00
parent 7606ca2a0c
commit 78a73cab85

View File

@ -187,6 +187,8 @@ void LuaParser::DoAttack(Mob *self, Mob *other, DamageHitInfo &hit, ExtraAttackO
std::string error = lua_tostring(L, -1);
AddError(error);
}
}
catch (std::exception &ex) {
std::string error = "Lua Exception: ";