Pin the fflate version; 0.5.3 is unusable

This commit is contained in:
Eevee (Evelyn Woods) 2021-01-14 04:35:08 -07:00
parent cf72daacbe
commit f89cccedb2
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import * as fflate from 'https://unpkg.com/fflate/esm/index.mjs';
import * as fflate from 'https://unpkg.com/fflate@0.4.8/esm/index.mjs';
import { DIRECTIONS, LAYERS, TICS_PER_SECOND } from './defs.js';
import { TILES_WITH_PROPS } from './editor-tile-overlays.js';

View File

@ -1,6 +1,6 @@
// TODO bugs and quirks i'm aware of:
// - steam: if a player character starts on a force floor they won't be able to make any voluntary movements until they are no longer on a force floor
import * as fflate from 'https://unpkg.com/fflate/esm/index.mjs';
import * as fflate from 'https://unpkg.com/fflate@0.4.8/esm/index.mjs';
import { DIRECTIONS, INPUT_BITS, TICS_PER_SECOND } from './defs.js';
import * as c2g from './format-c2g.js';

View File

@ -1,4 +1,4 @@
import * as fflate from 'https://unpkg.com/fflate/esm/index.mjs';
import * as fflate from 'https://unpkg.com/fflate@0.4.8/esm/index.mjs';
// Base class for custom errors
export class LLError extends Error {}