We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69caa9 commit e2d22e7Copy full SHA for e2d22e7
src/js/game/colors.js
@@ -155,6 +155,9 @@ for (const color in enumColors) {
155
156
// Anything with white is white again
157
enumColorMixingResults[color][c.white] = c.white;
158
+
159
+ // Black mixed with white is gray
160
+ enumColorMixingResults[c.black][c.white] = c.uncolored;
161
162
// Anything with uncolored is the same color
163
enumColorMixingResults[color][c.uncolored] = color;
0 commit comments