mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-31 07:57:47 +01:00
Fix improper skin tones and lots of DNA inconsistencies. Improve mob spawners by a little (#29271)
* sane appearance * updatepaths * flip-vitiligo * equal color options * ... * Update golems.dm * typo
This commit is contained in:
@@ -30,11 +30,11 @@ BONUS
|
||||
var/mob/living/M = A.affected_mob
|
||||
if(ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(H.s_tone == -85)
|
||||
if(H.s_tone == 85)
|
||||
return
|
||||
switch(A.stage)
|
||||
if(5)
|
||||
H.change_skin_tone(-85)
|
||||
H.change_skin_tone(85, TRUE)
|
||||
else
|
||||
H.visible_message("<span class='warning'>[H] looks a bit pale...</span>", "<span class='notice'>Your skin suddenly appears lighter...</span>")
|
||||
|
||||
@@ -73,11 +73,11 @@ BONUS
|
||||
var/mob/living/M = A.affected_mob
|
||||
if(ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(H.s_tone == 85)
|
||||
if(H.s_tone == -85)
|
||||
return
|
||||
switch(A.stage)
|
||||
if(5)
|
||||
H.change_skin_tone(85)
|
||||
H.change_skin_tone(-85, TRUE)
|
||||
else
|
||||
H.visible_message("<span class='warning'>[H] looks a bit dark...</span>", "<span class='notice'>Your skin suddenly appears darker...</span>")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user