diff --git a/LATEST_CHANGELOG b/LATEST_CHANGELOG
deleted file mode 100644
index 9a2c399..0000000
--- a/LATEST_CHANGELOG
+++ /dev/null
@@ -1,3 +0,0 @@
-* Added deploy script
-* Fixed LoadFolders for Revia and Moyo
-* Added changelogs to release page
diff --git a/LoadFolders.xml b/LoadFolders.xml
index 7be0397..93049fb 100644
--- a/LoadFolders.xml
+++ b/LoadFolders.xml
@@ -5,15 +5,15 @@
Content/Mods/VGE
Content/Mods/Milk
- Content/Mods/Moyo
- Content/Mods/Revia
+ Content/Mods/Moyo
+ Content/Mods/Revia
Content/Base
Content/Mods/VGE
Content/Mods/Milk
- Content/Mods/Moyo
- Content/Mods/Revia
+ Content/Mods/Moyo
+ Content/Mods/Revia
\ No newline at end of file
diff --git a/ReadMe.md b/ReadMe.md
index c823a23..d7255ad 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -114,7 +114,6 @@ This mod requires RJW and must be placed somewhere below it.
* Update milk mod support
* FCP dogmeat
* Alpha mythology
-* Avali
### Test and improve
* Race to the rim
* Dragon's descent crossbreeding
diff --git a/changelog.txt b/changelog.txt
index 996c4ec..0cf4a34 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,8 +1,3 @@
-11.4.0
--Added deploy script
--Fixed LoadFolders for Revia and Moyo
--Added changelogs to release page
-
11.3.3
-Added support for DLC races
@@ -363,6 +358,4 @@ Bovine Penis multi surgery bow require bovine penis and the label is fixed
-tweak breeders delight
-added length and width to custom parts
-mist men now get parts and gender
--Kijin hot Spring grants 10% fertility
-
-
+-Kijin hot Spring grants 10% fertility
\ No newline at end of file
diff --git a/deploy.ps1 b/deploy.ps1
deleted file mode 100644
index 492c4a1..0000000
--- a/deploy.ps1
+++ /dev/null
@@ -1,26 +0,0 @@
-Write-Output "Wait! Did you update LATEST_CHANGELOG?"
-pause
-
-$l = ".\LATEST_CHANGELOG"
-$c = ".\changelog.txt"
-$m = "Update to " + $args[0]
-
-Write-Output ("Deploying version " + $args[0])
-
-$a = Get-Content $l
-$b = $a | ForEach-Object { "* " + $_ }
-$b | Set-Content $l
-
-Write-Output $b
-
-$(
- ($args[0])
- ($a | ForEach-Object { "-" + $_ })
- ("")
- (Get-Content $c -Raw)
-) | Set-Content $c
-
-git add $l $c
-git commit -q -m $m
-git tag $args[0]
-git push origin $args[0]
\ No newline at end of file