Status tab final fix

This commit is contained in:
Dip
2020-09-01 22:29:10 -03:00
parent 4d3c98b639
commit cc0f48df38
3 changed files with 11 additions and 6 deletions
+5
View File
@@ -16,6 +16,11 @@
var/stat = CONSCIOUS //Whether a mob is alive or dead. TODO: Move this to living - Nodrak
var/list/sList = list()
var/list/sList2 = list()
var/tickrefreshThr = 20
var/tickrefresh = 0
/*A bunch of this stuff really needs to go under their own defines instead of being globally attached to mob.
A variable should only be globally attached to turfs/objects/whatever, when it is in fact needed as such.
The current method unnecessarily clusters up the variable list, especially for humans (although rearranging won't really clean it up a lot but the difference will be noticable for other mobs).