diff --git a/common/player.js b/common/player.js index cd7592e..20d6dbf 100644 --- a/common/player.js +++ b/common/player.js @@ -1,3 +1,7 @@ +if (!crypto) { + crypto = import('node:crypto'); +} + function distF(ent, target) { return ((ent.pos.x - target.pos.x) ** 2) + ((ent.pos.y - target.pos.y) ** 2) }