From a7310cba17afcf6c391a9eb68655b63050b458c7 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 18 Jan 2018 18:33:36 -0500 Subject: [PATCH] Export new special attack to lua too --- zone/lua_mob.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zone/lua_mob.cpp b/zone/lua_mob.cpp index 8b88ba12f..98ca32569 100644 --- a/zone/lua_mob.cpp +++ b/zone/lua_mob.cpp @@ -2499,7 +2499,8 @@ luabind::scope lua_register_special_abilities() { luabind::value("allow_to_tank", static_cast(ALLOW_TO_TANK)), luabind::value("ignore_root_aggro_rules", static_cast(IGNORE_ROOT_AGGRO_RULES)), luabind::value("casting_resist_diff", static_cast(CASTING_RESIST_DIFF)), - luabind::value("counter_avoid_damage", static_cast(COUNTER_AVOID_DAMAGE)) + luabind::value("counter_avoid_damage", static_cast(COUNTER_AVOID_DAMAGE)), + luabind::value("immune_ranged_attacks", static_cast(IMMUNE_RANGED_ATTACKS)) ]; }