Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Superlagg committed Sep 29, 2023
1 parent ef54d76 commit 9999654
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions code/controllers/subsystem/pornhud.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ SUBSYSTEM_DEF(pornhud)
var/list/hoohaws = list()
var/image_cache_max = 1024
var/update_pending = FALSE
var/debug_clotheshud = TRUE
var/debug_force_everyone_to_update_when_it_does = TRUE
var/debug_clotheshud = TRUE // coming soon in 2096

/datum/controller/subsystem/pornhud/fire(resumed)
if(update_pending)
for(var/mob/living/carbon/human/nadhaver in GLOB.human_list)
nadhaver.update_body(TRUE)
if(debug_force_everyone_to_update_when_it_does)
for(var/mob/living/carbon/human/nadhaver in GLOB.human_list)
nadhaver.update_body(TRUE)
update_everyone()
update_pending = FALSE

Expand Down

0 comments on commit 9999654

Please sign in to comment.