Skip to content
Open
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
2 changes: 1 addition & 1 deletion code/_onclick/other_mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@
changeNext_move(mmb_intent.clickcd)

/mob/living/proc/jump_action(atom/A)
if(HAS_TRAIT(src, TRAIT_IMMERSED))
if(HAS_TRAIT(src, TRAIT_IMMERSED) && !HAS_TRAIT(src, TRAIT_SWIMMER))
to_chat(src, span_warning("I can't jump while floating."))
return

Expand Down
2 changes: 1 addition & 1 deletion code/game/turfs/open/water.dm
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
var/current_direction = movedir || dir
var/speed = current_speed
if(HAS_TRAIT(moving, TRAIT_SWIMMER)) // more time to swim against the current
speed *= 2
speed *= 5
if(moving_loop)
moving_loop.direction = current_direction
moving_loop.delay = speed
Expand Down
Loading