mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
no relative pathing (#16234)
* the voices win in the end * cleanup * changelog * secure.dm hates me * make_exact_fit() in initialize instead of whatever was happening before
This commit is contained in:
@@ -14,7 +14,7 @@ var/list/dreams = list(
|
||||
"a unathi","a tajaran","the ai core","the mining station","the research station","a beaker of strange liquid"
|
||||
)
|
||||
|
||||
mob/living/carbon/proc/dream()
|
||||
/mob/living/carbon/proc/dream()
|
||||
dreaming = 1
|
||||
|
||||
spawn(0)
|
||||
@@ -25,8 +25,8 @@ mob/living/carbon/proc/dream()
|
||||
break
|
||||
dreaming = 0
|
||||
|
||||
mob/living/carbon/proc/handle_dreams()
|
||||
/mob/living/carbon/proc/handle_dreams()
|
||||
if(client && !dreaming && prob(5))
|
||||
dream()
|
||||
|
||||
mob/living/carbon/var/dreaming = 0
|
||||
/mob/living/carbon/var/dreaming = 0
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:32
|
||||
|
||||
proc/Intoxicated(phrase)
|
||||
/proc/Intoxicated(phrase)
|
||||
phrase = html_decode(phrase)
|
||||
var/leng=length(phrase)
|
||||
var/counter=length(phrase)
|
||||
@@ -23,7 +23,7 @@ proc/Intoxicated(phrase)
|
||||
newphrase+="[newletter]";counter-=1
|
||||
return newphrase
|
||||
|
||||
proc/stutter(phrase, str = 1)
|
||||
/proc/stutter(phrase, str = 1)
|
||||
if(str < 1)
|
||||
return phrase
|
||||
else
|
||||
@@ -78,10 +78,10 @@ proc/stutter(phrase, str = 1)
|
||||
|
||||
return jointext(split_phrase, " ")
|
||||
|
||||
proc/Stagger(mob/M,d) //Technically not a filter, but it relates to drunkenness.
|
||||
/proc/Stagger(mob/M,d) //Technically not a filter, but it relates to drunkenness.
|
||||
step(M, pick(d,turn(d,90),turn(d,-90)))
|
||||
|
||||
proc/Ellipsis(original_msg, chance = 50)
|
||||
/proc/Ellipsis(original_msg, chance = 50)
|
||||
if(chance <= 0) return "..."
|
||||
if(chance >= 100) return original_msg
|
||||
|
||||
|
||||
Reference in New Issue
Block a user