Remove useless bit of code for status tab fix

This commit is contained in:
Dip
2020-08-31 21:29:46 -03:00
parent 5aaf11b3d9
commit 4d3c98b639
@@ -59,15 +59,12 @@
//...and display them.
add_to_all_human_data_huds()
/var/tickrefreshThr2 = 20
/var/tickrefresh2 = 0
/var/list/sList2
/mob/living/carbon/human/Stat()
..()
//Same thing from mob
if(statpanel("Status"))
if(tickrefresh2 == 0)
if(tickrefresh == 1)
sList2 = list()
sList2 += "Intent: [a_intent]"
sList2 += "Move Mode: [m_intent]"
@@ -83,11 +80,6 @@
if(changeling)
sList2 += "Chemical Storage: " + "[changeling.chem_charges]/[changeling.chem_storage]"
sList2 += "Absorbed DNA: "+ "[changeling.absorbedcount]"
tickrefresh2++
else if(tickrefresh2 >= tickrefreshThr2)
tickrefresh2 = 0
else
tickrefresh2++
stat(null, "[sList2.Join("\n\n")]")
//NINJACODE