diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js index 1facd2c1c..99ac56f2b 100644 --- a/public/scripts/world-info.js +++ b/public/scripts/world-info.js @@ -2875,12 +2875,12 @@ function getWorldEntry(name, data, entry) { }); const entryState = function () { - if (entry.constant === true) { + if (entry.disable === true) { + return 'disabled'; + } else if (entry.constant === true) { return 'constant'; } else if (entry.vectorized === true) { return 'vectorized'; - } else if (entry.disable === true) { - return 'disabled'; } else { return 'normal'; }