Don't render player spawn tile

This commit is contained in:
Alex Page 2022-01-29 21:51:12 -05:00
parent 1dd15c4c8f
commit 29a1a2bc7f

View file

@ -381,11 +381,11 @@ pub fn tile_data(tile: TileType) -> TileData {
blink: false,
},
TileType::Player => TileData {
glyph: to_cp437('≡'),
glyph: 0,
serialized_char: 'P',
color_fg: vga::BLACK,
color_bg: vga::WHITE,
blink: true,
color_bg: vga::BLACK,
blink: false,
},
TileType::Punctuation => TileData {
glyph: to_cp437('!'),