Skip to content

Commit

Permalink
No we don't (#27148)
Browse files Browse the repository at this point in the history
Co-authored-by: adrermail@gmail.com <adrermail@gmail.com>
  • Loading branch information
Adrer and adrermail@gmail.com authored Oct 20, 2024
1 parent 9120b40 commit 41bb6f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/clothing/shoes/magboots.dm
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@
return

var/atom/target = get_edge_target_turf(user, user.dir) //gets the user's direction
ADD_TRAIT(user, TRAIT_FLYING, "gravity_boots")
if(user.throw_at(target, jumpdistance, jumpspeed, spin = FALSE, diagonals_first = TRUE, callback = CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(callback_remove_trait), user, TRAIT_FLYING, "gravity_boots")))
ADD_TRAIT(user, TRAIT_FLYING, "gravity_boots")
playsound(src, 'sound/effects/stealthoff.ogg', 50, TRUE, 1)
user.visible_message("<span class='warning'>[usr] dashes forward into the air!</span>")
recharging_time = world.time + recharging_rate
Expand Down
2 changes: 1 addition & 1 deletion code/modules/clothing/shoes/misc_shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@
return

var/atom/target = get_edge_target_turf(user, user.dir) //gets the user's direction
ADD_TRAIT(user, TRAIT_FLYING, "bhop_shoes")
if(user.throw_at(target, jumpdistance, jumpspeed, spin = FALSE, diagonals_first = TRUE, callback = CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(callback_remove_trait), user, TRAIT_FLYING, "bhop_shoes")))
ADD_TRAIT(user, TRAIT_FLYING, "bhop_shoes")
playsound(src, 'sound/effects/stealthoff.ogg', 50, TRUE, 1)
user.visible_message("<span class='warning'>[usr] dashes forward into the air!</span>")
recharging_time = world.time + recharging_rate
Expand Down

0 comments on commit 41bb6f2

Please sign in to comment.