diff --git a/src/caching/GlobalCache.ts b/src/caching/GlobalCache.ts index 11b0a62c1..a8914f395 100644 --- a/src/caching/GlobalCache.ts +++ b/src/caching/GlobalCache.ts @@ -74,7 +74,7 @@ export class $ { // $ = cash = cache... get it? :D } static costMatrixRecall(roomName: string, key: string): CostMatrix | undefined { - const cacheKey = roomName + ':' + key; + const cacheKey = roomName + 'm' + key; return _cache.costMatrices[cacheKey]; }