diff --git a/direct/src/distributed/CRCache.py b/direct/src/distributed/CRCache.py index 6a330d512e..0f128bc36d 100644 --- a/direct/src/distributed/CRCache.py +++ b/direct/src/distributed/CRCache.py @@ -6,7 +6,7 @@ import DistributedObject class CRCache: notify = DirectNotifyGlobal.directNotify.newCategory("CRCache") - def __init__(self, maxCacheItems=50): + def __init__(self, maxCacheItems=10): self.maxCacheItems = maxCacheItems self.dict = {} self.fifo = []