mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 00:21:11 +01:00
Our SSOverlays system is outdated, and is likely the cause of many of the issues seen in #18895. It has also been linked to a massive server performance decrease. This brings an updated system from Baystation, hopefully with speed increases. Should be testmerged, ideally with #18895. --------- Co-authored-by: Cody Brittain <cbrittain10@live.com>
10 lines
258 B
Plaintext
10 lines
258 B
Plaintext
/mob/living/carbon/slime/regenerate_icons()
|
|
if(stat == DEAD)
|
|
icon_state = "[colour] baby slime dead"
|
|
else
|
|
icon_state = "[colour] [is_adult ? "adult" : "baby"] slime[victim ? "" : " eat"]"
|
|
ClearOverlays()
|
|
if(mood)
|
|
AddOverlays("aslime-[mood]")
|
|
..()
|