make everyone start at 0,0

This commit is contained in:
HF 2020-01-13 04:01:50 +01:00
parent 4f349baef5
commit 7214ae6128

View File

@ -45,8 +45,8 @@ export type CanvasState = {
* check if we got coords from index.html * check if we got coords from index.html
*/ */
function getGivenCoords() { function getGivenCoords() {
if (window.coordx && window.coordy) return [window.coordx, window.coordy]; // if (window.coordx && window.coordy) return [window.coordx, window.coordy];
return [1749, -8283]; return [0, 0];
} }
/* /*