Skip to content

Commit

Permalink
defaulting mice color to pink after cleanup (#3393)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishrout-tech authored Dec 3, 2023
1 parent 6f5ceda commit 4835543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/turtle-painter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1173,8 +1173,8 @@ class Painter {
if (this.turtle.skinChanged) {
let artwork = TURTLESVG;
artwork = artwork
.replace(/fill_color/g, FILLCOLORS[i])
.replace(/stroke_color/g, STROKECOLORS[i]);
.replace(/fill_color/g, FILLCOLORS.at(i))
.replace(/stroke_color/g, STROKECOLORS.at(i));

this.turtle.doTurtleShell(
55,
Expand Down

0 comments on commit 4835543

Please sign in to comment.