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:
harryob
2023-04-30 21:10:13 +00:00
committed by GitHub
parent ad29453d4a
commit 578bae6f6f
144 changed files with 9951 additions and 9675 deletions
+3 -3
View File
@@ -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
+4 -4
View File
@@ -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