1
0
Fork 0

Fix render order

This commit is contained in:
Timothy Warren 2022-01-10 14:10:21 -05:00
parent 02215c884a
commit c81d0eda5e
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class Actor(Entity):
char=char,
color=color,
name=name,
blocks_movement=True
blocks_movement=True,
render_order=RenderOrder.ACTOR,
)
self.ai: Optional[BaseAI] = ai_cls(self)