diff --git a/common/player.js b/common/player.js index 114d762..4d57fc7 100644 --- a/common/player.js +++ b/common/player.js @@ -1,4 +1,4 @@ -const crypto = (typeof window === 'undefined') ? await import('node:crypto') : crypto; +let crypto = (typeof window === 'undefined') ? await import('node:crypto') : crypto; function distF(ent, target) { return ((ent.pos.x - target.pos.x) ** 2) + ((ent.pos.y - target.pos.y) ** 2)