Skip to content

Commit e3258d2

Browse files
Update to 1.21.10
1 parent 6868bfd commit e3258d2

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jgrapht = "1.5.2"
88
kotlin = "2.2.20"
99
kotlinx-coroutines = "1.10.2"
1010
ktor = "3.3.0"
11-
paper = "1.21.9-R0.1-SNAPSHOT"
11+
paper = "1.21.10-R0.1-SNAPSHOT"
1212
xenondevs-commons = "1.35"
1313

1414
[libraries]

nova/src/main/kotlin/xyz/xenondevs/nova/NovaBootstrapper.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import kotlin.io.path.Path
2626
import kotlin.io.path.exists
2727
import kotlin.io.path.invariantSeparatorsPathString
2828

29-
private val REQUIRED_SERVER_VERSION: ClosedVersionRange = Version("1.21.9")..Version("1.21.9")
29+
private val REQUIRED_SERVER_VERSION: ClosedVersionRange = Version("1.21.10")..Version("1.21.10")
3030
internal val IS_DEV_SERVER: Boolean = System.getProperty("NovaDev") != null
3131
internal val PREVIOUS_NOVA_VERSION: Version? = PermanentStorage.retrieve<Version>("last_version")
3232
internal val DATA_FOLDER = Path("plugins", "Nova")

nova/src/main/kotlin/xyz/xenondevs/nova/mixin/block/behavior/BlockBehaviourBlockStateBaseMixin.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ private void entityInside(
118118
BlockPos pos,
119119
Entity entity,
120120
InsideBlockEffectApplier effectApplier,
121+
boolean flag,
121122
CallbackInfo ci
122123
) {
123124
var novaPos = NMSUtilsKt.toNovaPos(pos, level.getWorld());

nova/src/main/kotlin/xyz/xenondevs/nova/mixin/block/disablelogic/TripWireBlockMixin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ protected void entityInside(
2525
Level level,
2626
BlockPos pos,
2727
Entity entity,
28-
InsideBlockEffectApplier effectApplier
28+
InsideBlockEffectApplier effectApplier,
29+
boolean flag
2930
) {
3031
}
3132

0 commit comments

Comments
 (0)