erlc-v2 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +575 -572
- package/index.d.ts +429 -430
- package/package.json +7 -7
- package/src/Client.js +460 -465
- package/src/api/LocalApiServer.js +530 -533
- package/src/map/renderPlayerMap.js +2 -2
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
const { ERLCError } = require("../errors");
|
|
2
2
|
|
|
3
3
|
const DEFAULT_MAP_URL =
|
|
4
|
-
"https://api.
|
|
4
|
+
"https://api.erlc.gg/maps/fall_blank.png";
|
|
5
5
|
const FIXED_MAP_SIZE = 3121;
|
|
6
|
-
const OFFICIAL_MAP_BASE_URL = "https://api.
|
|
6
|
+
const OFFICIAL_MAP_BASE_URL = "https://api.erlc.gg/maps";
|
|
7
7
|
const ROBLOX_HEADSHOT_URL = "https://thumbnails.roblox.com/v1/users/avatar";
|
|
8
8
|
const MAP_SEASON_ALIASES = {
|
|
9
9
|
fall: "fall",
|