({ dispatch, state })
| 62 | }, |
| 63 | |
| 64 | syncSoundToAudioSystem ({ dispatch, state }) { |
| 65 | if (state.soundOn) { |
| 66 | dispatch('audio/unmuteAll', undefined, { root: true }) |
| 67 | } else { |
| 68 | dispatch('audio/muteAll', undefined, { root: true }) |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | } |
nothing calls this directly
no test coverage detected