Don't render player spawn tile
This commit is contained in:
parent
1dd15c4c8f
commit
29a1a2bc7f
1 changed files with 3 additions and 3 deletions
|
@ -381,11 +381,11 @@ pub fn tile_data(tile: TileType) -> TileData {
|
||||||
blink: false,
|
blink: false,
|
||||||
},
|
},
|
||||||
TileType::Player => TileData {
|
TileType::Player => TileData {
|
||||||
glyph: to_cp437('≡'),
|
glyph: 0,
|
||||||
serialized_char: 'P',
|
serialized_char: 'P',
|
||||||
color_fg: vga::BLACK,
|
color_fg: vga::BLACK,
|
||||||
color_bg: vga::WHITE,
|
color_bg: vga::BLACK,
|
||||||
blink: true,
|
blink: false,
|
||||||
},
|
},
|
||||||
TileType::Punctuation => TileData {
|
TileType::Punctuation => TileData {
|
||||||
glyph: to_cp437('!'),
|
glyph: to_cp437('!'),
|
||||||
|
|
Loading…
Add table
Reference in a new issue