mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
A few minor fixes.
This commit is contained in:
@@ -1,10 +1,19 @@
|
||||
/mob/living/carbon/monkey
|
||||
var
|
||||
oxygen_alert = 0
|
||||
toxins_alert = 0
|
||||
fire_alert = 0
|
||||
name = "monkey"
|
||||
voice_name = "monkey"
|
||||
voice_message = "chimpers"
|
||||
say_message = "chimpers"
|
||||
icon = 'monkey.dmi'
|
||||
icon_state = "monkey1"
|
||||
gender = NEUTER
|
||||
pass_flags = PASSTABLE
|
||||
|
||||
temperature_alert = 0
|
||||
var/obj/item/weapon/card/id/wear_id = null // Fix for station bounced radios -- Skie
|
||||
|
||||
var/oxygen_alert = 0
|
||||
var/toxins_alert = 0
|
||||
var/fire_alert = 0
|
||||
var/temperature_alert = 0
|
||||
|
||||
|
||||
/mob/living/carbon/monkey/Life()
|
||||
@@ -37,6 +46,7 @@
|
||||
//to find it.
|
||||
src.blinded = null
|
||||
|
||||
|
||||
//Disease Check
|
||||
handle_virus_updates()
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set
|
||||
"malf AI" = IS_MODE_COMPILED("malfunction"),
|
||||
"revolutionary" = IS_MODE_COMPILED("revolution"),
|
||||
"alien candidate" = 1, //always show
|
||||
"pai candidate" = 1, // -- TLE
|
||||
"pAI candidate" = 1, // -- TLE
|
||||
"cultist" = IS_MODE_COMPILED("cult"),
|
||||
"infested monkey" = IS_MODE_COMPILED("monkey"),
|
||||
)
|
||||
@@ -176,7 +176,7 @@ datum/preferences
|
||||
dat += "Coughing? <a href=\"byond://?src=\ref[user];preferences=1;disabilities=2\">[disabilities & (1<<2) ? "Yes" : "No"]</a><br>"
|
||||
dat += "Tourettes/Twitching? <a href=\"byond://?src=\ref[user];preferences=1;disabilities=3\">[disabilities & (1<<3) ? "Yes" : "No"]</a><br>"
|
||||
dat += "Nervousness? <a href=\"byond://?src=\ref[user];preferences=1;disabilities=4\">[disabilities & (1<<4) ? "Yes" : "No"]</a><br>"
|
||||
dat += "Trenna's Disorder? (Deafness) <a href=\"byond://?src=\ref[user];preferences=1;disabilities=5\">[disabilities & (1<<5) ? "Yes" : "No"]</a><br>"
|
||||
dat += "Deafness? <a href=\"byond://?src=\ref[user];preferences=1;disabilities=5\">[disabilities & (1<<5) ? "Yes" : "No"]</a><br>"
|
||||
|
||||
dat += "<hr><b>Flavor Text</b><br>"
|
||||
dat += "<a href='byond://?src=\ref[user];preferences=1;flavor_text=1'>Change</a><br>"
|
||||
@@ -193,7 +193,7 @@ datum/preferences
|
||||
dat += "<b>Be [i]:</b> <a href=\"byond://?src=\ref[user];preferences=1;be_special=[n]\"><b>[src.be_special&(1<<n) ? "Yes" : "No"]</b></a><br>"
|
||||
n++
|
||||
else
|
||||
dat += "<b>You are banned from being syndicate.</b>"
|
||||
dat += "<b>You are banned from being Syndicate.</b>"
|
||||
src.be_special = 0
|
||||
dat += "<hr>"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user