Skip to content

Commit 58e208f

Browse files
committed
🛠️ Fix #358
1 parent 50f8830 commit 58e208f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ export function isCubeValid(cube: Cube) {
111111

112112
export function getFunctionNamespace(version: string): 'function' | 'functions' {
113113
// If the target version is 1.21.0 or higher, use the 'function' namespace instead of 'functions'
114-
return compareVersions(version, '1.21.0') ? 'function' : 'functions'
114+
return compareVersions(version, '1.20.10000') ? 'function' : 'functions'
115115
}

0 commit comments

Comments
 (0)