Skip to content

Commit

Permalink
fix(dungeon): make fire a more visible color
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Mar 24, 2023
1 parent 33b30cb commit a31cfdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class DungeonDisplayComponent implements OnInit, OnDestroy {
switch(tile) {
case DungeonTile.Floor: return '#fff';
case DungeonTile.Wall: return '#fff';
case DungeonTile.Fire: return '#00a';
case DungeonTile.Fire: return '#a0a';
case DungeonTile.Entrance: return '#0f0';
case DungeonTile.Exit: return '#0f0';
case DungeonTile.Boss: return '#f0f';
Expand Down

0 comments on commit a31cfdb

Please sign in to comment.