diff --git a/bundle/main.lua b/bundle/main.lua index 5f276ba..3faf7fd 100644 --- a/bundle/main.lua +++ b/bundle/main.lua @@ -727,7 +727,7 @@ function drawCavern() elseif tile == tiletypes.slime then love.graphics.setColor(0, 0, 0) love.graphics.rectangle('fill', x, y, x_scale, y_scale) - love.graphics.setColor(0, 0, 1) + love.graphics.setColor(1, 1, 0) love.graphics.ellipse('fill', x + 0.5 * x_scale, y + 0.5 * y_scale, 0.8 * x_scale/2, 0.8 * y_scale/2) love.graphics.rectangle('fill', x + 0.1 * x_scale , y + 0.5 * y_scale, 0.8 * x_scale, 0.8 * y_scale/2) elseif tile == tiletypes.unknown then @@ -755,7 +755,7 @@ function drawCavern() elseif tile == tiletypes.slime then love.graphics.setColor(0.2, 0.2, 0.2) love.graphics.rectangle('fill', x, y, x_scale, y_scale) - love.graphics.setColor(0.2, 0.2, 0.7) + love.graphics.setColor(0.7, 0.7, 0.2) love.graphics.ellipse('fill', x + 0.5 * x_scale, y + 0.5 * y_scale, 0.8 * x_scale/2, 0.8 * y_scale/2) love.graphics.rectangle('fill', x + 0.1 * x_scale , y + 0.5 * y_scale, 0.8 * x_scale, 0.8 * y_scale/2) else