Merge pull request #2967 from KhreedAI/staging Fix World Info Entry Priority Sort

5a5219633100e03825cc98db9ee66e0bd2a8c2cd

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

Signed
1 files changed, +2 -2Ignore whitespace
public/scripts/world-info.js+2 -2
@@ -1680,8 +1680,8 @@ export function sortWorldInfoEntries(data, { customSort = null } = {}) {
16801680 } else if (sortRule === 'priority') {
16811681 // First constant, then normal, then disabled.
16821682 primarySort = (a, b) => {
16831683 const aValue = a.constantdisable ? 02 : a.disableconstant ? 20 : 1;
16841684 const bValue = b.constantdisable ? 02 : b.disableconstant ? 20 : 1;
16851685 return aValue - bValue;
16861686 };
16871687 } else {