Skip to content

Commit

Permalink
did not save...
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuhuuuu committed Jun 17, 2024
1 parent b8ba723 commit 260f24d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/datums/ammo/rocket.dm
Original file line number Diff line number Diff line change
Expand Up @@ -261,19 +261,19 @@

/datum/ammo/rocket/wp/quad/on_hit_mob(mob/mob, obj/projectile/projectile)
drop_flame(get_turf(mob), projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)
cell_explosion(projectile.loc, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

/datum/ammo/rocket/wp/quad/on_hit_obj(obj/object, obj/projectile/projectile)
drop_flame(get_turf(object), projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)
cell_explosion(projectile.loc, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

/datum/ammo/rocket/wp/quad/on_hit_turf(turf/turf, obj/projectile/projectile)
drop_flame(turf, projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)
cell_explosion(projectile.loc, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

/datum/ammo/rocket/wp/quad/do_at_max_range(obj/projectile/projectile)
drop_flame(get_turf(projectile), projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)
cell_explosion(projectile.loc, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

/datum/ammo/rocket/custom
name = "custom rocket"
Expand Down

0 comments on commit 260f24d

Please sign in to comment.