this is still acting up idk why

This commit is contained in:
biglyderv 2024-09-29 04:09:50 -04:00
parent a3f74464d7
commit 612a1e310f
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
import crypto from "./crypto.js";
import crypto from "../crypto.js";
function distF(ent, target) {
return ((ent.pos.x - target.pos.x) ** 2) + ((ent.pos.y - target.pos.y) ** 2)

View file

@ -10,6 +10,7 @@ var game = new Game();
game.init();
app.use('/crypto.js', express.static('./common/crypto.js'));
app.use('/js', express.static('./common'));
app.use(express.static('./static'));