Преглед изворни кода

Allow the view-scene preset (console only) to show every view

master
Fen Dweller пре 4 година
родитељ
комит
331af8f59e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      presets/scenes.js

+ 1
- 1
presets/scenes.js Прегледај датотеку

@@ -100,7 +100,7 @@ scenes["EVERY VIEW AAAAA"] = () => {
function makeViewsScene(constructor, viewChoice) {
return () => {
Object.keys(constructor.constructor().views).forEach(view => {
if (view.indexOf(viewChoice) >= 0) {
if (viewChoice === undefined || view.indexOf(viewChoice) >= 0) {
const entity = constructor.constructor()
displayEntity(entity, view, 0, 1)
}


Loading…
Откажи
Сачувај