Skip to content

Commit

Permalink
Merge pull request #1191 from personlized/master
Browse files Browse the repository at this point in the history
Quick Xenobiological Slime Hybrid fix
  • Loading branch information
MosleyTheMalO committed Aug 18, 2024
2 parents 91a0b89 + 49690de commit a9b741b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/__DEFINES/is_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list(
#define ismammal(A) (is_species(A, /datum/species/mammal))
#define isinsect(A) (is_species(A, /datum/species/insect))
#define isxenoperson(A) (is_species(A, /datum/species/xeno))
#define isstartjelly(A) (is_species(A, /datum/species/jelly/roundstartslime))
#define isstartjelly(A) (is_species(A, /datum/species/jelly/slime/roundstartslime))
#define isarachnid(A) (is_species(A, /datum/species/arachnid) || HAS_TRAIT(A, TRAIT_ARACHNID)) // SPLURT Edit: for the Arachnid trait

//more carbon mobs
Expand Down
4 changes: 2 additions & 2 deletions code/game/objects/effects/spawners/gibspawner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@
/obj/effect/gibspawner/slime
gibtypes = list(/obj/effect/decal/cleanable/blood/gibs/slime/up, /obj/effect/decal/cleanable/blood/gibs/slime/down, /obj/effect/decal/cleanable/blood/gibs/slime, /obj/effect/decal/cleanable/blood/gibs/slime, /obj/effect/decal/cleanable/blood/gibs/slime/body, /obj/effect/decal/cleanable/blood/gibs/slime/limb, /obj/effect/decal/cleanable/blood/gibs/slime/core)
gibamounts = list(1, 1, 1, 1, 1, 1, 1)
gib_mob_type = /mob/living/carbon/human/species/roundstartslime
gib_mob_species = /datum/species/jelly/roundstartslime
gib_mob_type = /mob/living/carbon/human/species/slime/roundstartslime
gib_mob_species = /datum/species/jelly/slime/roundstartslime
sound_vol = 50

/obj/effect/gibspawner/slime/Initialize(mapload)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1178,8 +1178,8 @@ Mark this mob, then navigate to the preferences of the client you desire and cal
/mob/living/carbon/human/species/ipc
race = /datum/species/ipc

/mob/living/carbon/human/species/roundstartslime
race = /datum/species/jelly/roundstartslime
/mob/living/carbon/human/species/slime/roundstartslime
race = /datum/species/jelly/slime/roundstartslime

/mob/living/carbon/human/species/arachnid
race = /datum/species/arachnid
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@

////////////////////////////////////////////////////////Round Start Slimes///////////////////////////////////////////////////////////////////

/datum/species/jelly/roundstartslime
/datum/species/jelly/slime/roundstartslime
name = "Xenobiological Slime Hybrid"
id = SPECIES_SLIME_HYBRID
limbs_id = SPECIES_SLIME
Expand Down

0 comments on commit a9b741b

Please sign in to comment.