Skip to content

Commit

Permalink
iunno
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Dec 8, 2023
1 parent f98bff1 commit 21a06c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions code/controllers/controller.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/datum/controller
var/name
// The object used for the clickable stat() button.
var/obj/effect/statclick/statclick

/datum/controller/proc/Initialize()

Expand Down
1 change: 1 addition & 0 deletions code/controllers/globals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars)
var/datum/controller/exclude_these = new
gvars_datum_in_built_vars = exclude_these.vars + list(NAMEOF(src, gvars_datum_protected_varlist), NAMEOF(src, gvars_datum_in_built_vars), NAMEOF(src, gvars_datum_init_order))
QDEL_IN(exclude_these, 0) //signal logging isn't ready
exclude_these = null

log_world("[vars.len - gvars_datum_in_built_vars.len] global variables")

Expand Down
4 changes: 2 additions & 2 deletions code/modules/atmospherics/gasmixtures/reactions.dm
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,9 @@
var/result = G.react()
if(result != REACTING)
return list("success" = FALSE, "message" = "Reaction didn't go at all!")
if(abs(G.analyzer_results["fusion"] - 0.691869) > 0.01)
if(abs(G.analyzer_results["fusion"] - 2.66) > 0.01)
var/instability = G.analyzer_results["fusion"]
return list("success" = FALSE, "message" = "Fusion is not calculating analyzer results correctly, should be 0.691869, is instead [instability]")
return list("success" = FALSE, "message" = "Fusion is not calculating analyzer results correctly, should be 2.66, is instead [instability]")
if(abs(G.get_moles(GAS_PLASMA) - 552.789) > 0.5)
var/plas = G.get_moles(GAS_PLASMA)
return list("success" = FALSE, "message" = "Fusion is not calculating plasma correctly, should be 458.531, is instead [plas]")
Expand Down
2 changes: 1 addition & 1 deletion code/modules/overmap/ships/controlled_ship_datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
QDEL_NULL(ship_account)
if(!QDELETED(shipkey))
QDEL_NULL(shipkey)
QDEL_LIST(manifest)
manifest.Cut()
job_slots.Cut()
for(var/a_key in applications)
if(isnull(applications[a_key]))
Expand Down

0 comments on commit 21a06c1

Please sign in to comment.