Skip to content

Commit

Permalink
more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuhuuuu committed Jun 17, 2024
1 parent 5a0764e commit b8ba723
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 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)
explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

Check failure on line 264 in code/datums/ammo/rocket.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "epicenter"

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

Check failure on line 268 in code/datums/ammo/rocket.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "epicenter"

/datum/ammo/rocket/wp/quad/on_hit_turf(turf/turf, obj/projectile/projectile)
drop_flame(turf, projectile.weapon_cause_data)
explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

Check failure on line 272 in code/datums/ammo/rocket.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "epicenter"

/datum/ammo/rocket/wp/quad/do_at_max_range(obj/projectile/projectile)
drop_flame(get_turf(projectile), projectile.weapon_cause_data)
explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data)
cell_explosion(epicenter, 200, 32, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data)

Check failure on line 276 in code/datums/ammo/rocket.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "epicenter"

/datum/ammo/rocket/custom
name = "custom rocket"
Expand Down
1 change: 0 additions & 1 deletion code/game/machinery/deployable.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@
s.start()

deconstruct(FALSE)
explosion(src.loc,-1,-1,0)

/obj/structure/machinery/deployable/barrier/deconstruct(disassembled = TRUE)
if(!disassembled)
Expand Down
4 changes: 2 additions & 2 deletions code/game/objects/items/devices/binoculars.dm
Original file line number Diff line number Diff line change
Expand Up @@ -640,9 +640,9 @@
flame_radius(cause_data, 3, target, , , , , )
cell_explosion(target, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
flame_radius(cause_data, 3, target_2, , , , , )
cell_explosion(target, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
cell_explosion(target_2, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
flame_radius(cause_data, 3, target_3, , , , , )
cell_explosion(target, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
cell_explosion(target_3, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
flame_radius(cause_data, 3, target_4, , , , , )
cell_explosion(target_4, 220, 45, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)
sleep(1)
Expand Down
2 changes: 1 addition & 1 deletion code/game/objects/items/implants/implant.dm
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Implant Specifics:<BR>"}

/obj/item/implant/dexplosive/activate(cause)
if((!cause) || (!src.imp_in)) return 0
explosion(src, -1, 0, 2, 3, 0)//This might be a bit much, dono will have to see.
cell_explosion(src, 120, 40, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, cause_data)

Check failure on line 129 in code/game/objects/items/implants/implant.dm

View workflow job for this annotation

GitHub Actions / Run Linters

undefined var: "cause_data"
if(src.imp_in)
src.imp_in.gib()

Expand Down
2 changes: 0 additions & 2 deletions code/modules/power/lighting.dm
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,6 @@
var/turf/T = get_turf(src.loc)
spawn(0)
broken() // break it first to give a warning
sleep(2)
explosion(T, 0, 0, 2, 2)
sleep(1)
qdel(src)

Expand Down

0 comments on commit b8ba723

Please sign in to comment.