summaryrefslogtreecommitdiff
path: root/src/reducers/index.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-21 15:10:15 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:06:04 +0200
commit0439ccf76f9ccf68c7572deadf38d6a157c439e7 (patch)
treee71d3ac9b2ab443d8c49342cc6c7708ba2a00788 /src/reducers/index.js
parentda861719c6433a1fc9346da958f0907e52d578ce (diff)
Implement last-simulated-tick and states fetching
Diffstat (limited to 'src/reducers/index.js')
-rw-r--r--src/reducers/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/reducers/index.js b/src/reducers/index.js
index a9b6bf34..17b75182 100644
--- a/src/reducers/index.js
+++ b/src/reducers/index.js
@@ -7,7 +7,7 @@ import {map} from "./map";
import {modals} from "./modals";
import {objects} from "./objects";
import {simulationList} from "./simulation-list";
-import {currentExperimentId, currentTick, isPlaying, loadMetric} from "./simulation-mode";
+import {currentExperimentId, currentTick, isPlaying, lastSimulatedTick, loadMetric} from "./simulation-mode";
import {states} from "./states";
const rootReducer = combineReducers({
@@ -21,6 +21,7 @@ const rootReducer = combineReducers({
currentDatacenterId,
currentExperimentId,
currentTick,
+ lastSimulatedTick,
loadMetric,
isPlaying,
interactionLevel,