Skip to content

Commit

Permalink
remove unused vars with invalid types
Browse files Browse the repository at this point in the history
  • Loading branch information
pali6 committed Apr 18, 2023
1 parent f4f9e6f commit 51a3956
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 11 deletions.
5 changes: 0 additions & 5 deletions code/global.dm
Original file line number Diff line number Diff line change
Expand Up @@ -488,11 +488,6 @@ var/global
centralConn = 1 //Are we able to connect to the central server?
centralConnTries = 0 //How many times have we tried and failed to connect?

/* nuclear reactor & parameter set, if it exists */
obj/machinery/power/nuke/fchamber/nuke_core = null
obj/machinery/power/nuke/nuke_turbine/nturbine = null
datum/nuke_knobset/nuke_knobs = null

//Resource Management
list/localResources = list()
list/cachedResources = list()
Expand Down
1 change: 0 additions & 1 deletion code/modules/networks/computer3/computer3.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
var/obj/item/disk/data/fixed_disk/hd = null
var/datum/computer/file/terminal_program/active_program
var/datum/computer/file/terminal_program/host_program //active is set to this when the normal active quits, if available
var/datum/computer/file/terminal_shell/os_shell
var/list/processing_programs = list()
var/obj/item/disk/data/floppy/diskette = null
var/list/peripherals = list()
Expand Down
1 change: 0 additions & 1 deletion code/obj/item/device/infrared_stuff.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ TYPEINFO(/obj/item/device/infra)
name = "Laser Tripwire"
desc = "Emits a visible or invisible beam and is triggered when the beam is interrupted."
icon_state = "infrared0"
var/obj/beam/i_beam/first = null
var/state = 0
var/visible = 0
flags = FPRINT | TABLEPASS| CONDUCT
Expand Down
2 changes: 0 additions & 2 deletions code/obj/item/storage/secure_safe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
ABSTRACT_TYPE(/obj/item/storage/secure)
/obj/item/storage/secure
name = "storage/secure"
var/atom/movable/screen/storage/boxes = null
var/atom/movable/screen/close/closer = null
var/icon_locking = "secureb"
var/icon_sparking = "securespark"
var/icon_open = "secure0"
Expand Down
2 changes: 0 additions & 2 deletions code/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ var/global/mob/twitch_mob = 0
create_turf_html = grabResource("html/admin/create_object.html")
create_turf_html = replacetext(create_turf_html, "null /* object types */", "\"[turfjs]\"")

var/f_color_selector_handler/F_Color_Selector

/proc/buildMaterialPropertyCache()
if(materialProps.len) return
for(var/A in childrentypesof(/datum/material_property)) //Caching material props
Expand Down

0 comments on commit 51a3956

Please sign in to comment.