Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
1.19.2 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy0000 authored Aug 14, 2022
1 parent a69410b commit c9bd556
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ allprojects {

dependencies {
val libs = rootProject.libs
val mobzylibs = rootProject.mobzylibs
val mobzyLibs = rootProject.mobzyLibs

compileOnly(mobzylibs.geary.papermc.core)
compileOnly(mobzyLibs.geary.papermc.core)

implementation(libs.idofront.nms)
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group=com.mineinabyss
version=0.17
version=0.18
useNMS=true
idofrontVersion=0.11.95
idofrontVersion=0.12.103
kotlinVersion=1.6.10
serverVersion=1.19-R0.1-SNAPSHOT
serverVersion=1.19.2-R0.1-SNAPSHOT
# Workaround for dokka builds failing on CI, see https://github.com/Kotlin/dokka/issues/1405
org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
geary = "0.18.103"
geary = "0.19.108"

[libraries]
protocolburrito = "com.mineinabyss:protocolburrito:0.4.33"
protocolburrito = "com.mineinabyss:protocolburrito:0.5.34"
geary-papermc-core = { module = "com.mineinabyss:geary-papermc-core", version.ref = "geary" }
2 changes: 1 addition & 1 deletion mobzy-systems/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

compileOnly(libs.minecraft.plugin.modelengine)
compileOnly(libs.minecraft.plugin.protocollib)
compileOnly(mobzylibs.protocolburrito)
compileOnly(mobzyLibs.protocolburrito)

compileOnly(project(":mobzy-core"))
compileOnly(project(":mobzy-components"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.mineinabyss.mobzy.systems.systems

import com.mineinabyss.geary.annotations.AutoScan
import com.mineinabyss.geary.systems.TickingSystem
import com.mineinabyss.geary.systems.RepeatingSystem
import com.mineinabyss.geary.systems.accessors.TargetScope
import com.mineinabyss.idofront.nms.aliases.toNMS
import com.mineinabyss.idofront.typealiases.BukkitEntity
Expand All @@ -13,7 +13,7 @@ import org.bukkit.entity.Mob
import kotlin.time.Duration.Companion.seconds

@AutoScan
class WalkingAnimationSystem : TickingSystem(interval = 0.5.seconds) {
class WalkingAnimationSystem : RepeatingSystem(interval = 0.5.seconds) {
private val TargetScope.model by get<Model>()
private val TargetScope.mob by get<BukkitEntity>()

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ dependencyResolutionManagement {

versionCatalogs {
create("libs").from("com.mineinabyss:catalog:$idofrontVersion")
create("mobzylibs").from(files("gradle/mobzylibs.versions.toml"))
create("mobzyLibs").from(files("gradle/mobzyLibs.versions.toml"))
}
}

0 comments on commit c9bd556

Please sign in to comment.