Make the head more brown

This commit is contained in:
Juhani Krekelä 2019-06-29 00:29:59 +03:00
parent 9dc1348da1
commit 809a88e366
1 changed files with 1 additions and 1 deletions

View File

@ -608,7 +608,7 @@ function love.draw()
-- Draw the player
local player_head_center_x = (player_x - 1) * x_scale + 0.5 * x_scale
local player_head_center_y = (player_y - 1) * y_scale + 0.5 * y_scale
love.graphics.setColor(0.7, 0.3, 0.3)
love.graphics.setColor(0.6, 0.2, 0.2)
love.graphics.ellipse('fill', player_head_center_x, player_head_center_y, x_scale/2, y_scale/2)
local player_body_x, player_body_y = getBodyLocation()