Skip to content

Commit

Permalink
Update wrecks.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
PawnAtWork authored Jun 30, 2023
1 parent 2b60f3f commit 812d9b3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions code/game/objects/structures/wrecks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
name = "wrecked motorcycle"
desc = "An old pre-war motorcycle, rusted and destroyed with age and weathering."
icon_state = "rust_light_no_wheels"
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/car/bike/welder_act(mob/living/user, obj/item/I)
. = TRUE
Expand Down Expand Up @@ -103,8 +103,8 @@
bound_width = 192
bound_height = 64
icon = 'icons/obj/vehicles/bus1.dmi'
var/uses_left = 4
var/inuse = FALSE
uses_left = 4
inuse = FALSE

/obj/structure/wreck/bus/welder_act(mob/living/user, obj/item/I)
. = TRUE
Expand Down Expand Up @@ -177,8 +177,8 @@
icon_state = "bus1"
bound_width = 32
bound_height = 32
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/bus/rusted/segmented1
name = "wrecked bus"
Expand Down Expand Up @@ -450,8 +450,8 @@
icon_state = "secwaybroke"
bound_width = 32
bound_height = 32
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/trash/secway/attackby(obj/item/I, mob/living/user, params)
if(istype(I, /obj/item/weldingtool))
Expand Down Expand Up @@ -497,8 +497,8 @@
icon_state = "technical_pile3"
bound_width = 32
bound_height = 32
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/trash/brokenvendor/attackby(obj/item/I, mob/living/user, params)
if(istype(I, /obj/item/weldingtool))
Expand Down Expand Up @@ -544,8 +544,8 @@
icon_state = "technical_pile1"
bound_width = 32
bound_height = 32
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/trash/machinepile/attackby(obj/item/I, mob/living/user, params)
if(istype(I, /obj/item/weldingtool))
Expand Down Expand Up @@ -592,8 +592,8 @@
icon_state = "technical_pile2"
bound_width = 32
bound_height = 32
var/uses_left = 2
var/inuse = FALSE
uses_left = 2
inuse = FALSE

/obj/structure/wreck/trash/machinepiletwo/attackby(obj/item/I, mob/living/user, params)
if(istype(I, /obj/item/weldingtool))
Expand Down

0 comments on commit 812d9b3

Please sign in to comment.