@@ -61,9 +61,10 @@ this.font = new Font("MS Gothic", cell-2, GraphicsUnit.PIXEL); this.backColor = Color(255,255,255); this.colors['#'] = this.colors['.'] = Color(255,191,127); - this.colors['*'] = Color(255,127,127); + this.colors['*'] = + this.colors['@'] = Color(255,127,127); this.colors['R'] = Color(128,128,0); this.colors['d'] = Color(255,0,0); this.colors['\\'] = this.colors['L'] = @@ -74,8 +75,9 @@ foreach(char c; 'A'..'J') this.colors[c] = Color(142,142,255); foreach(char c; '1'..':') this.colors[c] = Color(255,142,255); this.render['#'] = "■"; this.render['*'] = "✹"; + this.render['@'] = "❁"; this.render['.'] = "♒"; this.render['\\'] = "λ"; this.render['R'] = "☃"; this.render['d'] = "☠";