Slimes Atomization (#16080)

This commit is contained in:
Fluffy
2023-03-23 22:58:41 +00:00
committed by GitHub
parent 32ceef5c36
commit 136cd87268
2 changed files with 58 additions and 17 deletions
+17 -17
View File
@@ -91,55 +91,55 @@
regenerate_icons()
/mob/living/carbon/slime/purple/Initialize(mapload, colour = "purple")
..()
. = ..()
/mob/living/carbon/slime/metal/Initialize(mapload, colour = "metal")
..()
. = ..()
/mob/living/carbon/slime/orange/Initialize(mapload, colour = "orange")
..()
. = ..()
/mob/living/carbon/slime/blue/Initialize(mapload, colour = "blue")
..()
. = ..()
/mob/living/carbon/slime/dark_blue/Initialize(mapload, colour = "dark blue")
..()
. = ..()
/mob/living/carbon/slime/dark_purple/Initialize(mapload, colour = "dark purple")
..()
. = ..()
/mob/living/carbon/slime/yellow/Initialize(mapload, colour = "yellow")
..()
. = ..()
/mob/living/carbon/slime/silver/Initialize(mapload, colour = "silver")
..()
. = ..()
/mob/living/carbon/slime/pink/Initialize(mapload, colour = "pink")
..()
. = ..()
/mob/living/carbon/slime/red/Initialize(mapload, colour = "red")
..()
. = ..()
/mob/living/carbon/slime/gold/Initialize(mapload, colour = "gold")
..()
. = ..()
/mob/living/carbon/slime/green/Initialize(mapload, colour = "green")
..()
. = ..()
/mob/living/carbon/slime/oil/Initialize(mapload, colour = "oil")
..()
. = ..()
/mob/living/carbon/slime/adamantine/Initialize(mapload, colour = "adamantine")
..()
. = ..()
/mob/living/carbon/slime/black/Initialize(mapload, colour = "black")
..()
. = ..()
/mob/living/carbon/slime/cerulean/Initialize(mapload, colour = "cerulean")
..()
. = ..()
/mob/living/carbon/slime/pyrite/Initialize(mapload, colour = "pyrite")
..()
. = ..()
/mob/living/carbon/slime/getToxLoss()
return toxloss
@@ -0,0 +1,41 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
# balance
# admin
# backend
# security
# refactor
#################################
# Your name.
author: Fluffyghost
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- bugfix: "Fixes slime initialization, so that the correct init hint is returned to SSAtoms."