Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Nov 22, 2023
1 parent 74dd291 commit e4b46b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ abstract class PatchExtension(val project: Project) {

project.tasks.register("createClassPatch".withSourceSet(sourceSet), CreateClassPatchTask::class.java) {
it.group = "patchbase"
it.inputFile.set((project.tasks.findByName("remapJar".withSourceSet(sourceSet)) as Jar).outputs.files.singleFile)
it.inputFile.set((project.tasks.findByName("remap" + "jar".withSourceSet(sourceSet).capitalized()) as Jar).outputs.files.singleFile)

when (mc.side) {
EnvType.CLIENT -> it.classpath.set(project.files(mc.minecraftData.minecraftClientFile))
Expand Down

0 comments on commit e4b46b1

Please sign in to comment.