change color of block states

This commit is contained in:
ForestOfLight
2025-04-13 01:13:16 -07:00
Unverified
parent 373b3df853
commit 79b22e5fd7
+1 -1
View File
@@ -35,7 +35,7 @@ class BlockInfo {
} }
static getFormattedStates(states) { static getFormattedStates(states) {
return Object.entries(states).map(([key, value]) => `§7${key}: ${value}`).join('\n'); return Object.entries(states).map(([key, value]) => `§7${key}: §3${value}`).join('\n');
} }
} }