Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
val versions = providers.gradleProperty("net.labymod.minecraft-versions").get().split(";")

group = "org.example"
version = providers.environmentVariable("VERSION").getOrElse("1.0.1")
version = providers.environmentVariable("VERSION").getOrElse("1.0.2")

labyMod {
defaultPackageName = "com.rappytv.betterfriends"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.google.gson.JsonObject;
import java.util.ArrayList;
import java.util.List;
import net.labymod.api.Constants.LegacyUrls;
import net.labymod.api.Constants.Urls;
import net.labymod.api.client.component.Component;
import net.labymod.api.labyconnect.protocol.model.friend.Friend;
import net.labymod.api.user.GameUser;
Expand All @@ -18,7 +18,7 @@ public class GroupHelper {

public static void registerGroupIds() {
Request.ofGson(JsonElement.class)
.url(LegacyUrls.GROUPS)
.url(Urls.LABYNET_GROUPS)
.execute(response -> {
if (response.hasException()) {
return;
Expand Down