Skip to content

Commit

Permalink
skibidi toilet
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystalzzzz committed Oct 20, 2023
1 parent 5b543ef commit 03ca350
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions run/config/waterfall/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ log_pings: true
connection_throttle_limit: 3
server_connect_timeout: 5000
timeout: 30000
stats: 797aab79-2230-4340-be83-926d44fb400c
player_limit: -1
prevent_proxy_connections: false
ip_forward: true
groups:
md_5:
- admin
remote_ping_timeout: 5000
connection_throttle: 4000
log_commands: false
prevent_proxy_connections: false
stats: 797aab79-2230-4340-be83-926d44fb400c
online_mode: true
forge_support: true
disabled_commands:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ data class BalancingConfiguration(
speed = 80.0,
shieldDamageMultiplier = 7,
thickness = 0.0,
particleThickness = 0.8,
particleThickness = 0.6,
explosionPower = 4.5f,
volume = 0,
pitch = 2.0f,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class HeavyTurretWeaponSubsystem(
target: Vector
) {
if (starship.initialBlockCount < 6500 || starship.initialBlockCount > 12000) {
shooter.userError("You can't fire heavy turrets on a ship smaller than 6500 blocks or larger than 12000 blocks!")
starship.userError("You can't fire heavy turrets on a ship smaller than 6500 blocks or larger than 12000 blocks!")
return
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class PhaserWeaponSubsystem(

override fun fire(loc: Location, dir: Vector, shooter: Damager, target: Vector?) {
if (starship.initialBlockCount > 12000) {
shooter.userError("You can't fire phasers on a ship larger than 12000 blocks!")
starship.userError("You can't fire phasers on a ship larger than 12000 blocks!")
return
}

Expand Down

0 comments on commit 03ca350

Please sign in to comment.