mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-10 09:23:18 +00:00
16 lines
421 B
Plaintext
16 lines
421 B
Plaintext
//debug proc for testing body temperature
|
|
/client/proc/modifytemperature(newtemp as num)
|
|
set category = "Debug"
|
|
set name = "mass edit temperature"
|
|
set desc="edit temperature of all turfs in view"
|
|
/*
|
|
if(Debug2)
|
|
for(var/turf/T in view())
|
|
if(!T.updatecell) continue
|
|
T.temp = newtemp
|
|
log_admin("[key_name(src)] set [T]'s temp to [newtemp]")
|
|
return
|
|
else
|
|
alert("Debugging is off")
|
|
return
|
|
*/ |