From 3a7efeeca36d99639c8295c882c0d1319fb85b9d Mon Sep 17 00:00:00 2001
From: Hazel <git@ravy.org>
Date: Mon, 29 Apr 2024 20:04:01 +0100
Subject: [PATCH] fix(ci): linux private repo issues (#524)

---
 .github/hooks/post-checkout              | 0
 .github/hooks/post-merge                 | 0
 .github/hooks/pre-push                   | 0
 Project.xml                              | 2 +-
 hmm.json                                 | 6 +++---
 source/funkin/audio/visualize/ABotVis.hx | 6 +++---
 6 files changed, 7 insertions(+), 7 deletions(-)
 mode change 100644 => 100755 .github/hooks/post-checkout
 mode change 100644 => 100755 .github/hooks/post-merge
 mode change 100644 => 100755 .github/hooks/pre-push

diff --git a/.github/hooks/post-checkout b/.github/hooks/post-checkout
old mode 100644
new mode 100755
diff --git a/.github/hooks/post-merge b/.github/hooks/post-merge
old mode 100644
new mode 100755
diff --git a/.github/hooks/pre-push b/.github/hooks/pre-push
old mode 100644
new mode 100755
diff --git a/Project.xml b/Project.xml
index 0a44a268c..2e056426c 100644
--- a/Project.xml
+++ b/Project.xml
@@ -124,7 +124,7 @@
 	<haxelib name="polymod" /> <!-- Modding framework -->
 	<haxelib name="flxanimate" /> <!-- Texture atlas rendering -->
 	<haxelib name="hxCodec" if="desktop" unless="hl" /> <!-- Video playback -->
-	<haxelib name="funkVis"/>
+	<haxelib name="funkin.vis"/>
 
 
 	<haxelib name="json2object" /> <!-- JSON parsing -->
diff --git a/hmm.json b/hmm.json
index c53a1143b..0417b583a 100644
--- a/hmm.json
+++ b/hmm.json
@@ -46,10 +46,10 @@
       "version": "3.5.0"
     },
     {
-      "name": "funkVis",
+      "name": "funkin.vis",
       "type": "git",
       "dir": null,
-      "ref": "7fc9901553fbe9b8fcf6e2e84bc86eabeaf29701",
+      "ref": "98c9db09f0bbfedfe67a84538a5814aaef80bdea",
       "url": "https://github.com/FunkinCrew/funkVis"
     },
     {
@@ -171,4 +171,4 @@
       "url": "https://github.com/FunkinCrew/thx.semver"
     }
   ]
-}
\ No newline at end of file
+}
diff --git a/source/funkin/audio/visualize/ABotVis.hx b/source/funkin/audio/visualize/ABotVis.hx
index 0295e35ff..ca77dd58a 100644
--- a/source/funkin/audio/visualize/ABotVis.hx
+++ b/source/funkin/audio/visualize/ABotVis.hx
@@ -8,8 +8,8 @@ import flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup;
 import flixel.math.FlxMath;
 import flixel.sound.FlxSound;
 import funkin.util.MathUtil;
-import funkVis.dsp.SpectralAnalyzer;
-import funkVis.audioclip.frontends.LimeAudioClip;
+import funkin.vis.dsp.SpectralAnalyzer;
+import funkin.vis.audioclip.frontends.LimeAudioClip;
 
 using Lambda;
 
@@ -90,7 +90,7 @@ class ABotVis extends FlxTypedSpriteGroup<FlxSprite>
   }
 
   /**
-   * TJW funkVis based visualizer! updateFFT() is the old nasty shit that dont worky!
+   * TJW funkin.vis based visualizer! updateFFT() is the old nasty shit that dont worky!
    */
   function drawFFT():Void
   {