Fix Corrupted Server Icon (#802)

[BUG]

[IGNORE]
  checks = { compareBefore = \"1.7-beta-5\" } # Only apply this if the commit being compared against is 1.7-beta-5 or newer
[IGNORE]
This commit is contained in:
Integer Limit 2024-07-15 09:49:03 +10:00 committed by GitHub
parent 5fa8c53413
commit 1018afd86f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -206,7 +206,9 @@ function copyServerOverrides() {
* Copies files from ./serverfiles into dest folder. * Copies files from ./serverfiles into dest folder.
*/ */
function copyServerFiles() { function copyServerFiles() {
return src(["../serverfiles/**"]).pipe(dest(serverDestDirectory)); return src(["../serverfiles/**"], {
encoding: false, // Needed because of the Server Icon
}).pipe(dest(serverDestDirectory));
} }
/** /**