diff --git a/src/main/kotlin/dev/slne/surf/lobby/config/LobbyConfig.kt b/src/main/kotlin/dev/slne/surf/lobby/config/LobbyConfig.kt index 27ac285..1d64938 100644 --- a/src/main/kotlin/dev/slne/surf/lobby/config/LobbyConfig.kt +++ b/src/main/kotlin/dev/slne/surf/lobby/config/LobbyConfig.kt @@ -30,9 +30,9 @@ data class LobbyConfig( companion object { fun default() = LocationConfig( world = "world", - x = 0.0, + x = 0.5, y = 100.0, - z = 0.0, + z = 0.5, yaw = 0.0f, pitch = 0.0f ) diff --git a/src/main/kotlin/dev/slne/surf/lobby/listener/PushbackListener.kt b/src/main/kotlin/dev/slne/surf/lobby/listener/PushbackListener.kt index 439a2c1..b8b6c20 100644 --- a/src/main/kotlin/dev/slne/surf/lobby/listener/PushbackListener.kt +++ b/src/main/kotlin/dev/slne/surf/lobby/listener/PushbackListener.kt @@ -30,7 +30,7 @@ object PushbackListener : Listener { player.playSound(true) { type(Sound.ENTITY_PLAYER_ATTACK_CRIT) - volume(0.5f) + volume(0.2f) } } } diff --git a/src/main/kotlin/dev/slne/surf/lobby/manager/PushbackManager.kt b/src/main/kotlin/dev/slne/surf/lobby/manager/PushbackManager.kt index e145367..4199313 100644 --- a/src/main/kotlin/dev/slne/surf/lobby/manager/PushbackManager.kt +++ b/src/main/kotlin/dev/slne/surf/lobby/manager/PushbackManager.kt @@ -30,7 +30,7 @@ object PushbackManager { player.world.playEffect(player.location, Effect.ENDER_SIGNAL, null) } - }, 20, 20) + }, 10, 10) } fun add(uuid: UUID) {