Implement cache clear reasons to avoid clearing caches when we do not need that (esp useful for dmg time cache)
This commit is contained in:
@@ -117,3 +117,11 @@ class GraphDpsDroneMode(IntEnum):
|
||||
auto = 1
|
||||
followAttacker = 2
|
||||
followTarget = 3
|
||||
|
||||
|
||||
@unique
|
||||
class GraphCacheCleanupReason(IntEnum):
|
||||
fitChanged = auto()
|
||||
graphSwitched = auto()
|
||||
inputChanged = auto()
|
||||
optionChanged = auto()
|
||||
|
||||
Reference in New Issue
Block a user