Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated dependencies #358

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
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,15 @@ class EurekaShipControl : ShipForcesInducer, ServerTickListener {
val controllingPlayer = ship.getAttachment(SeatedControllingPlayer::class.java)
val validPlayer = controllingPlayer != null && !anchored

if (isCruising && anchored) {
isCruising = false
showCruiseStatus()

if (anchored) {
if (isCruising) {
isCruising = false
showCruiseStatus()
}

physShip.isStatic = true
return
}

stabilize(
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ enabled_platforms=fabric,forge
archives_base_name=eureka
maven_group=org.valkyrienskies
# Dependencies
vs2_version=2.1.1-beta.1+9445389ac1
vs_core_version=1.1.0+8a93383ce5
vs2_version=2.1.1-beta.5+72fac3232e
vs_core_version=1.1.0+b19b27c4a4
minecraft_version=1.18.2
architectury_version=4.10.86
fabric_loader_version=0.14.10
fabric_api_version=0.59.0+1.18.2
forge_version=1.18.2-40.1.85
fabric_loader_version=0.14.11
fabric_api_version=0.67.0+1.18.2
forge_version=1.18.2-40.2.4
forge_kotlin_version=3.12.0
kotlin_version=1.9.10
cloth_config_version=6.4.90
Expand Down
Loading