Skip to content

Commit

Permalink
rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhoribu authored Feb 2, 2025
1 parent d7a2c78 commit b8903c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sk.lic
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
if defined?(Lich::Gemstone::SK)
echo("Version of Lich5 has built-in support for ;sk manipulation.")
echo("No longer need to run the script.")
if DB_Store.read(":", "autostart")["scripts"].any? { |script| script.any? { |k, v| v == 'sk' } }
if DB_Store.read(":", "autostart")["scripts"].any? { |script| script.any? { |_k, v| v == 'sk' } }
echo("Found ;sk in your global autostarts, removing now!")
Script.run("autostart", "remove --global sk")
end
if DB_Store.read("#{XMLData.game}:#{XMLData.name}", "autostart")["scripts"].any? { |script| script.any? { |k, v| v == 'sk' } }
if DB_Store.read("#{XMLData.game}:#{XMLData.name}", "autostart")["scripts"].any? { |script| script.any? { |_k, v| v == 'sk' } }
echo("Found ;sk in your character autostarts, removing now!")
Script.run("autostart", "remove sk")
end
Expand Down

0 comments on commit b8903c4

Please sign in to comment.