This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent c8107534d2
commit dc713281d8

View file

@ -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)