remove reference to deprecated mod

This commit is contained in:
An Orbit 2024-12-11 11:10:49 -05:00 committed by GitHub
parent 9c573ee97a
commit b08c91662e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 141 additions and 145 deletions

View File

@ -1,6 +1,3 @@
if(enabledMods.includes("mods/a_mod_by_alice.js")) {
logMessage("cursor_shapes.js is redundant with a_mod_by_alice.js")
} else {
currentShape = "square";
shapeOrder = ["square","circle","triangle","inverted triangle","rhombus","squircle","twinkle","slash","backslash"];
shapeExclusionConditions = {
@ -150,4 +147,3 @@ if(enabledMods.includes("mods/a_mod_by_alice.js")) {
logMessage(`Current shape: ${currentShape}`)
}
})
}