[Feature] Add lua and perl event for test buff (#1403)

* [Feature] Add lua and perl event for test buff

* added EnableTestBuff
This commit is contained in:
Dencelle
2021-06-16 10:04:34 -05:00
committed by GitHub
parent 5d937b5be9
commit 4f5824b4a1
8 changed files with 18 additions and 3 deletions
+2 -1
View File
@@ -3203,7 +3203,8 @@ luabind::scope lua_register_events() {
luabind::value("tick", static_cast<int>(EVENT_TICK)),
luabind::value("spawn_zone", static_cast<int>(EVENT_SPAWN_ZONE)),
luabind::value("death_zone", static_cast<int>(EVENT_DEATH_ZONE)),
luabind::value("use_skill", static_cast<int>(EVENT_USE_SKILL))
luabind::value("use_skill", static_cast<int>(EVENT_USE_SKILL)),
luabind::value("test_buff", static_cast<int>(EVENT_TEST_BUFF))
];
}