Skip to content

Commit

Permalink
actually fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Feb 2, 2025
1 parent 50130ef commit e2c7e86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ abstract class MinecraftConfig(val project: Project, val sourceSet: SourceSet) :
*/
fun side(sideConf: String) {
project.logger.info("setting minecraft side to $sideConf")
if (sideConf.equalsIgnoreCase("combined")) {
if (sideConf.equals("combined", true)) {
side = EnvType.JOINED
}
side = EnvType.valueOf(sideConf.uppercase())
Expand Down

0 comments on commit e2c7e86

Please sign in to comment.