Update libac version

Update libz version
This commit is contained in:
Aria 2023-05-15 21:28:38 -07:00
parent bddc923eca
commit a5d69a1730
4 changed files with 11 additions and 10 deletions

View file

@ -2,7 +2,7 @@ plugins {
id 'eclipse' id 'eclipse'
id 'maven-publish' id 'maven-publish'
id 'net.minecraftforge.gradle' version '5.1.+' id 'net.minecraftforge.gradle' version '5.1.+'
// id 'org.parchmentmc.librarian.forgegradle' version '1.+' id 'org.parchmentmc.librarian.forgegradle' version '1.+'
} }
version = "${mc_version}-${myversion}" version = "${mc_version}-${myversion}"
@ -32,8 +32,8 @@ minecraft {
// //
// Use non-default mappings at your own risk. They may not always work. // Use non-default mappings at your own risk. They may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace. // Simply re-run your setup task after changing the mappings to update your workspace.
// mappings channel: 'parchment', version: "${parchment_version}-${mc_version}" mappings channel: 'parchment', version: "${parchment_version}-${mc_version}"
mappings channel: 'official', version: "${mc_version}" // mappings channel: 'official', version: "${mc_version}"
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default. // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.

View file

@ -3,10 +3,10 @@
org.gradle.jvmargs=-Xmx3G org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false org.gradle.daemon=false
mc_version=1.19.4 mc_version=1.19.3
forge_version=45.0.46 forge_version=44.1.0
myversion=1.0.7.0506230341 myversion=1.0.7.0515232124
# parchment_version=2023.03.12 parchment_version=2023.03.12
# luckperms_api_version=5.4 # luckperms_api_version=5.4
libac=1.1.5 libac=1.2.11

View file

@ -2,7 +2,7 @@ pluginManagement {
repositories { repositories {
gradlePluginPortal() gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' } maven { url = 'https://maven.minecraftforge.net/' }
//maven { url = 'https://maven.parchmentmc.org' } // Add this line maven { url = 'https://maven.parchmentmc.org' } // Add this line
} }
} }

View file

@ -1,6 +1,7 @@
package dev.zontreck.libzontreck.events; package dev.zontreck.libzontreck.events;
import dev.zontreck.ariaslib.events.EventBus; import dev.zontreck.ariaslib.events.EventBus;
import dev.zontreck.ariaslib.terminal.Task;
import dev.zontreck.ariaslib.util.DelayedExecutorService; import dev.zontreck.ariaslib.util.DelayedExecutorService;
import dev.zontreck.libzontreck.LibZontreck; import dev.zontreck.libzontreck.LibZontreck;
import dev.zontreck.libzontreck.currency.Account; import dev.zontreck.libzontreck.currency.Account;
@ -52,7 +53,7 @@ public class ForgeEventHandlers {
MinecraftForge.EVENT_BUS.post(new ProfileLoadedEvent(prof, player, level)); MinecraftForge.EVENT_BUS.post(new ProfileLoadedEvent(prof, player, level));
DelayedExecutorService.getInstance().schedule(new Runnable() { DelayedExecutorService.getInstance().schedule(new Task("send-msg", true) {
@Override @Override
public void run() { public void run() {
// Check player wallet, then send wallet to client // Check player wallet, then send wallet to client