Skip to content

Commit

Permalink
chore: bump idofront
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy0000 committed Aug 7, 2024
1 parent 117230b commit a6d37f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=com.mineinabyss
version=0.6
idofrontVersion=0.24.19
idofrontVersion=0.24.20
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
gearyPaper = "0.30.10-dev.9"
gearyPaper = "0.30.10-dev.10"
guiy="0.12.1"

[libraries]
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/com/mineinabyss/packy/PackyGenerator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ object PackyGenerator {
// Filters out all required files as they are already in defaultPack
// Filter all TemplatePacks that are not default or not in players enabledPackAddons
packy.templates.values.filter { !it.required && it.id in templateIds }
.mapNotNull { ResourcePacks.readToResourcePack(it.path.toFile()) }.forEach { ResourcePacks.mergeResourcePacks(cachedPack, it) }
.mapNotNull { ResourcePacks.readToResourcePack(it.path.toFile()) }
.forEach { ResourcePacks.mergeResourcePacks(cachedPack, it) }

ResourcePacks.sortItemOverrides(cachedPack)
PackObfuscator(cachedPack).obfuscatePack()

val builtPack = ResourcePacks.resourcePackWriter.build(cachedPack)
Expand Down

0 comments on commit a6d37f3

Please sign in to comment.