Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit b7ca328

Browse files
authored
uh oh stupid (#22619)
1 parent 928a7a3 commit b7ca328

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

code/datums/martial/buster_style.dm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@
253253
thrown_atom.take_damage(soarobjdam)
254254
thrown_atom.Bump(Z)
255255
if(istype(thrown_atom, /obj/mecha)) //mechs are probably heavy as hell so stop flying after making contact with resistance
256-
thrown -= thrown_atom
256+
lobbed -= thrown_atom
257257
if(Z.density == TRUE && Z.anchored == FALSE) //if the thing hit isn't anchored it starts flying too
258-
thrown |= Z
258+
lobbed |= Z
259259
Z.take_damage(50)
260260
if(Z.density == TRUE && Z.anchored == TRUE)
261261
for(var/mob/living/S in lobbed)
@@ -282,7 +282,7 @@
282282
for(var/mob/living/S in lobbed)
283283
grab(user, S, soarslamdam)
284284
S.Knockdown(1 SECONDS)
285-
thrown |= M
285+
lobbed |= M
286286
for(var/obj/O in lobbed)
287287
O.take_damage(soarobjdam)
288288
if(next) // if the next tile wont stop the thrown mass from continuing
@@ -295,7 +295,7 @@
295295
if(isspaceturf(next)) //jettison
296296
var/atom/throw_target = get_edge_target_turf(K, dir_to_target)
297297
K.throw_at(throw_target, 6, 4, user, 3)
298-
addtimer(CALLBACK(src, PROC_REF(soar), user, center, endzone, distance-1, thrown), 0.01 SECONDS)
298+
addtimer(CALLBACK(src, PROC_REF(soar), user, center, endzone, distance-1, lobbed), 0.01 SECONDS)
299299
return COMSIG_MOB_CANCEL_CLICKON
300300

301301
/*---------------------------------------------------------------

0 commit comments

Comments
 (0)