- Reordenació de actors en habitacions
This commit is contained in:
@@ -517,7 +517,7 @@ namespace modules
|
||||
num[7] = (i%10)+48;
|
||||
draw::print(num, 6, 4+line*9, LIGHT+WHITE, BLACK); line++;
|
||||
|
||||
act = actor::getFirst();
|
||||
act = actor::alphaOrder(actor::getFirst());
|
||||
while (act)
|
||||
{
|
||||
if ((act->flags&FLAG_NOEDITOR)!=FLAG_NOEDITOR && (act->flags&FLAG_HERO)!=FLAG_HERO) {
|
||||
@@ -532,7 +532,7 @@ namespace modules
|
||||
draw::print(act->name, 14, 4+line*9, LIGHT+WHITE, BLACK);
|
||||
line++;
|
||||
}
|
||||
act = act->next;
|
||||
act = act->next_alpha;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user