Skip to content

Commit

Permalink
Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Sep 6, 2024
1 parent d67aeea commit 5e26968
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ unifiedPublishing {
releaseType = "${ENV.RELEASE_TYPE ?: 'release'}"
gameVersions = Arrays.asList(rootProject.supported_versions.split(', '))
gameLoaders = ["neoforge"]
version = project.version
displayName = "$mod_name NeoForge $project.version"
changelog = "https://github.com/KubeJS-Mods/KubeJS-Mekanism/commits/main/"
mainPublication jar
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ minecraft_version=1.21.1
supported_versions=1.21.1, 1.21
mod_version=2101.1.6

neoforge_version=21.1.31
neoforge_version=21.1.42
parchment_mc_version=1.21
parchment_mapping_version=2024.07.28
kubejs_version=2101.7.0-build.160
mekanism_version=1.21.1-10.7.5.62
kubejs_version=2101.7.0-build.166
mekanism_version=1.21.1-10.7.7.64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dev.latvian.mods.kubejs.mekanism;

import dev.latvian.mods.kubejs.color.Color;
import dev.latvian.mods.kubejs.color.KubeColor;
import dev.latvian.mods.kubejs.registry.BuilderBase;
import dev.latvian.mods.rhino.util.ReturnsSelf;
import mekanism.api.chemical.Chemical;
Expand Down Expand Up @@ -112,8 +112,8 @@ public KubeChemicalBuilder radiation(double radioactivity) {
return this;
}

public KubeChemicalBuilder tint(Color tint) {
chemicalBuilder().tint(tint.getRgbJS());
public KubeChemicalBuilder tint(KubeColor tint) {
chemicalBuilder().tint(tint.kjs$getRGB());
return this;
}

Expand Down

0 comments on commit 5e26968

Please sign in to comment.