From 96678ea5a2e1c66159abf894c35f0d6824386561 Mon Sep 17 00:00:00 2001 From: HyperOnion <> Date: Sat, 24 Jun 2023 09:46:17 +0200 Subject: [PATCH] remove dead comment. --- js/player.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/js/player.mjs b/js/player.mjs index 620d155..cedd474 100644 --- a/js/player.mjs +++ b/js/player.mjs @@ -12,7 +12,6 @@ function out_of_bounds (x, y) { y < 0 || y >= world.BOX_SIZE } -// TODO: clean up this by making tile movement be performed by the world code. export function set_player_pos (x, y) { const previous_x = player.x; const previous_y = player.y;