Fixes [Re]Vitiligo (#20384)

* Fix [Re]Vitiligo

* Remove redundant function call

* Readability
This commit is contained in:
Nathan Winters
2023-02-12 13:08:37 +01:00
committed by GitHub
parent cd48632bac
commit c12b8420ec
2 changed files with 19 additions and 23 deletions
@@ -34,8 +34,7 @@ BONUS
return
switch(A.stage)
if(5)
H.s_tone = -85
H.update_body()
H.change_skin_tone(-85)
else
H.visible_message("<span class='warning'>[H] looks a bit pale...</span>", "<span class='notice'>Your skin suddenly appears lighter...</span>")
@@ -78,8 +77,7 @@ BONUS
return
switch(A.stage)
if(5)
H.s_tone = 85
H.update_body()
H.change_skin_tone(85)
else
H.visible_message("<span class='warning'>[H] looks a bit dark...</span>", "<span class='notice'>Your skin suddenly appears darker...</span>")