Rename the glyphs

This commit is contained in:
Marc Di Luzio 2020-07-19 11:56:05 +01:00
parent f665436007
commit 7e41ac0028
7 changed files with 52 additions and 52 deletions

View file

@ -29,11 +29,11 @@ func (t Tile) Glyph() Glyph {
case TileNone:
return GlyphNone
case TileRock:
return GlyphRock
return GlyphGroundRock
case TileGravel:
return GlyphGravel
return GlyphGroundGravel
case TileSand:
return GlyphSand
return GlyphGroundSand
}
log.Fatalf("Unknown tile type: %c", t)