- Reordenació de actors en habitacions

This commit is contained in:
2024-09-17 20:09:41 +02:00
parent f1f37d7801
commit a62dec7567
7 changed files with 305 additions and 305 deletions

View File

@@ -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;
}
}