@@ -63,9 +63,9 @@ this.colors['#'] = this.colors['.'] = Color(255,191,127); this.colors['*'] = Color(255,127,127); this.colors['R'] = Color(128,128,0); - this.colors['D'] = Color(255,0,0); + this.colors['d'] = Color(255,0,0); this.colors['\\'] = this.colors['L'] = this.colors['O'] = Color(127,255,127); this.colors['W'] = Color(204,229,255); @@ -75,9 +75,9 @@ this.render['*'] = "✹"; this.render['.'] = "♒"; this.render['\\'] = "λ"; this.render['R'] = "☃"; - this.render['D'] = "☠"; + this.render['d'] = "☠"; this.render['L'] = "☒"; this.render['O'] = "☐"; foreach(c,tp; g.map.tr_target) { char d = g.map[tp]; @@ -107,9 +107,9 @@ Rect r = Rect(cell*(x-1), scrH-cell*y, cell, cell); char c = g.map[y,x]; if( c != ' ' ) { if( c == 'R' && g.dead ) - c = 'D'; + c = 'd'; graphicContext.drawText(this.render[c], font, this.colors[c], r); } }