#2529 Prioritize disabled for UI entry state

3c059d19efe8975276582c6d4087d250250a7e01

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -3Ignore whitespace
public/scripts/world-info.js+3 -3
@@ -2875,12 +2875,12 @@ function getWorldEntry(name, data, entry) {
28752875 });
28762876
28772877 const entryState = function () {
28782878 if (entry.constantdisable === true) {
2879+ return 'disabled';
2880+ } else if (entry.constant === true) {
28792881 return 'constant';
28802882 } else if (entry.vectorized === true) {
28812883 return 'vectorized';
2882- } else if (entry.disable === true) {
2883- return 'disabled';
28842884 } else {
28852885 return 'normal';
28862886 }