Added notes to map state reset detection

This commit is contained in:
Mitchell McCaffrey 2020-11-04 15:03:14 +11:00
parent 92fa7133bc
commit 927c596b04

View File

@ -39,7 +39,8 @@ function MapTiles({
if (
Object.values(state.tokens).length > 0 ||
state.mapDrawActions.length > 0 ||
state.fogDrawActions.length > 0
state.fogDrawActions.length > 0 ||
Object.values(state.notes).length > 0
) {
hasMapState = true;
break;