mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-21 07:32:35 +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
|
|
*/ |