Skip to content

Commit

Permalink
update kotlinscript engine file
Browse files Browse the repository at this point in the history
  • Loading branch information
HollowHorizon committed Feb 6, 2024
1 parent 6696e61 commit 06d8e18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ dependencies {
annotationProcessor("org.spongepowered:mixin:0.8.5:processor")

implementation("thedarkcolour:kotlinforforge:$kffVersion")
implementation(fg.deobf("ru.hollowhorizon:kotlinscript:${mcVersion}-${ksffVersion}"))
implementation(fg.deobf("ru.hollowhorizon:kotlinscript:${ksffVersion}"))
implementation(fg.deobf("ru.hollowhorizon:hc:${mcVersion}-${hcVersion}"))
implementation(fg.deobf("curse.maven:ftb-teams-forge-404468:4611938"))
implementation(fg.deobf("curse.maven:ftb-library-forge-404465:4661834"))
Expand Down
Binary file modified hc/hc-1.19.2-1.4.1.jar
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ object DirectoryManager {
fun getContentScripts() = getScripts().filter { it.path.endsWith(".content.kts") }

fun compileAll() {
getModScripts().parallelStream().forEach {
getModScripts().forEach {
ScriptingCompiler.compileFile<ModScript>(it)
}
getStoryEvents().parallelStream().forEach {
getStoryEvents().forEach {
ScriptingCompiler.compileFile<StoryScript>(it)
}
getContentScripts().parallelStream().forEach {
getContentScripts().forEach {
ScriptingCompiler.compileFile<ContentScript>(it)
}
}
Expand Down

0 comments on commit 06d8e18

Please sign in to comment.