mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-31 08:37:14 +01:00
Merge pull request #981 from ariaworld/lewd-smallupdate
[Lewd] [Semi-Modular] - Human Erect Penis and Balls Sprites-Fix & More!
This commit is contained in:
@@ -9,26 +9,36 @@
|
||||
to_chat(usr, span_warning("You cannot toggle your gender while unconcious!"))
|
||||
return
|
||||
|
||||
var/choice = tgui_alert(usr, "Select Gender.", "Gender", list("Both", "Male", "Female", "None", "Toggle Breasts"))
|
||||
var/choice = tgui_alert(usr, "Select Gender.", "Gender", list("Both", "Male", "Female", "None", "Toggle Breasts", "Toggle Penis", "Toggle Pussy", "Toggle Balls"))
|
||||
switch(choice)
|
||||
if("Both")
|
||||
has_penis = TRUE
|
||||
has_balls = TRUE
|
||||
has_vagina = TRUE
|
||||
gender = PLURAL
|
||||
if("Male")
|
||||
has_penis = TRUE
|
||||
has_balls = TRUE
|
||||
has_vagina = FALSE
|
||||
gender = MALE
|
||||
if("Female")
|
||||
has_penis = FALSE
|
||||
has_balls = FALSE
|
||||
has_vagina = TRUE
|
||||
gender = FEMALE
|
||||
if("None")
|
||||
has_penis = FALSE
|
||||
has_balls = FALSE
|
||||
has_vagina = FALSE
|
||||
gender = NEUTER
|
||||
if("Toggle Breasts") // Idea/Initial code by @LunarFleet (github)
|
||||
has_breasts = !has_breasts // Simplified line by @Zirok-BYOND (github)
|
||||
if("Toggle Penis")
|
||||
has_penis = !has_penis
|
||||
if("Toggle Pussy")
|
||||
has_vagina = !has_vagina
|
||||
if("Toggle Balls")
|
||||
has_balls = !has_balls
|
||||
|
||||
/// Toggle admin frozen
|
||||
/mob/living/proc/toggle_admin_freeze(client/admin)
|
||||
|
||||
Reference in New Issue
Block a user