Skip to content

Commit

Permalink
further tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
X0-11 committed Jun 3, 2024
1 parent 51026d2 commit dcdb9c4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
6 changes: 2 additions & 4 deletions code/_helpers/unsorted.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1126,17 +1126,15 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new)

see_in_dark = 1e6

virtual_mob = null

/atom/proc/get_light_and_color(var/atom/origin)
if(origin)
color = origin.color
set_light(origin.light_range, origin.light_power, origin.light_color)

/mob/dview/Initialize()
..()
. = ..()
// We don't want to be in any mob lists; we're a dummy not a mob.
SSmobs.mob_list -= src
STOP_PROCESSING(SSmobs, src)

// call to generate a stack trace and print to runtime logs
/proc/crash_with(msg)
Expand Down
2 changes: 1 addition & 1 deletion code/controllers/Processes/chemistry.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var/datum/controller/process/chemistry/chemistryProcess

/datum/controller/process/chemistry/setup()
name = "chemistry"
schedule_interval = 20 // every 2 seconds
schedule_interval = 5 // every 2 seconds
chemistryProcess = src
active_holders = list()
chemical_reactions = chemical_reactions_list
Expand Down
4 changes: 0 additions & 4 deletions code/modules/mob/mob.dm
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@
/mob/Initialize()
. = ..()
START_PROCESSING(SSmobs, src)
..()

/mob/Initialize()
. = ..()
last_z = z
var/obj/om_obj = map_sectors["[z]"]
if(om_obj)
Expand Down
2 changes: 1 addition & 1 deletion maps/_gamemodes/firefight/overmind.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/datum/npc_overmind/firefight/New()
. = ..()
START_PROCESSING(SSobj, src)
START_PROCESSING(SSobj, src)

/datum/npc_overmind/firefight/create_taskpoint_assign()
//intentionally left blank
Expand Down
2 changes: 1 addition & 1 deletion test/check-paths.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

WORLD_LOG_COUNT=40
ANGLE_BRACKET_COUNT=730
ANGLE_BRACKET_COUNT=731

FAILED=0

Expand Down

0 comments on commit dcdb9c4

Please sign in to comment.