nothing special, the player is red

This commit is contained in:
staubsauger 2024-08-17 14:56:17 +02:00
parent d65c7f9bcb
commit 091ff11b6d
2 changed files with 3 additions and 2 deletions

View file

@ -50,7 +50,7 @@ def new_world() -> Registry:
world.new_entity(
components={
Position: player_pos,
Graphic: Graphic(ord('@')),
Graphic: Graphic(ch=ord('@'), fg=(255, 0, 0)),
Gold: 0
},
tags=[IsActor, IsPlayer]