reenabled diagonal movement

This commit is contained in:
kharhamel 2020-04-30 19:36:28 +02:00
parent 62d2498e34
commit dd0744387f
3 changed files with 20 additions and 25 deletions

View file

@ -1,4 +1,4 @@
const DEBUG_MODE: boolean = !!process.env.DEBUG_MODE || false;
const DEBUG_MODE: boolean = process.env.DEBUG_MODE as any === true;
const API_URL = process.env.API_URL || "http://api.workadventure.localhost";
const ROOM = [process.env.ROOM || "THECODINGMACHINE"];
const RESOLUTION = 4;