mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-10 02:31:03 +00:00
Some quest item and spell work, took out that stupid multiquesting code -> use your brains that's completely doable entirely in quests even perl
This commit is contained in:
+1
-6
@@ -760,12 +760,7 @@ Lua_HateList Lua_Mob::GetHateList() {
|
||||
auto h_list = self->GetHateList();
|
||||
auto iter = h_list.begin();
|
||||
while(iter != h_list.end()) {
|
||||
tHateEntry *ent = (*iter);
|
||||
Lua_HateEntry e;
|
||||
e.ent = Lua_Mob(ent->ent);
|
||||
e.damage = ent->damage;
|
||||
e.hate = ent->hate;
|
||||
e.frenzy = ent->bFrenzy;
|
||||
Lua_HateEntry e(*iter);
|
||||
ret.entries.push_back(e);
|
||||
++iter;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user