You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/modules/admin/topic.dm
+6-6
Original file line number
Diff line number
Diff line change
@@ -453,7 +453,7 @@
453
453
GLOB.dynamic_stacking_limit =input(usr,"Change the threat limit at which round-endings rulesets will start to stack.", "Change stacking limit", null) as num
454
454
log_admin("[key_name(usr)] set 'stacking_limit' to [GLOB.dynamic_stacking_limit].")
455
455
message_admins("[key_name(usr)] set 'stacking_limit' to [GLOB.dynamic_stacking_limit].")
456
-
dynamic_mode_options(usr)
456
+
dynamic_mode_options(usr)
457
457
458
458
elseif(href_list["f_dynamic_high_pop_limit"])
459
459
if(!check_rights(R_ADMIN))
@@ -472,7 +472,7 @@
472
472
473
473
log_admin("[key_name(usr)] set 'high_pop_limit' to [GLOB.dynamic_high_pop_limit].")
474
474
message_admins("[key_name(usr)] set 'high_pop_limit' to [GLOB.dynamic_high_pop_limit].")
src.admincaster_wanted_message.body = adminscrub(input(usr, "Provide the a description of the Wanted person and any other details you deem important.", "Network Security Handler", ""))
1842
1842
while (findtext(src.admincaster_wanted_message.body,"") ==1)
@@ -354,7 +354,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
354
354
355
355
var/response= alert(src, "Are you sure you want to prevent (almost) all means of resuscitation? This cannot be undone. ","Are you sure you want to stay dead?","DNR","Save Me")
356
356
if(response !="DNR")
357
-
return
357
+
return
358
358
359
359
can_reenter_corpse =FALSE
360
360
to_chat(src, "You can no longer be brought back into your body.")
Copy file name to clipboardExpand all lines: code/modules/mob/mob_helpers.dm
+8-8
Original file line number
Diff line number
Diff line change
@@ -82,8 +82,8 @@
82
82
*/
83
83
/proc/slur(n)
84
84
var/phrase= html_decode(n)
85
-
var/leng=lentext(phrase)
86
-
var/counter=lentext(phrase)
85
+
var/leng=length(phrase)
86
+
var/counter=length(phrase)
87
87
var/newphrase=""
88
88
var/newletter=""
89
89
while(counter>=1)
@@ -117,8 +117,8 @@
117
117
/// Makes you talk like you got cult stunned, which is slurring but with some dark messages
118
118
/proc/cultslur(n) // Inflicted on victims of a stun talisman
119
119
var/phrase= html_decode(n)
120
-
var/leng=lentext(phrase)
121
-
var/counter=lentext(phrase)
120
+
var/leng=length(phrase)
121
+
var/counter=length(phrase)
122
122
var/newphrase=""
123
123
var/newletter=""
124
124
while(counter>=1)
@@ -223,7 +223,7 @@
223
223
224
224
/**
225
225
* Convert a message into leet non gaijin speak
226
-
*
226
+
*
227
227
* The difference with stutter is that this proc can stutter more than 1 letter
228
228
*
229
229
* The issue here is that anything that does not have a space is treated as one word (in many instances). For instance, "LOOKING," is a word, including the comma.
@@ -398,7 +398,7 @@
398
398
* The kitchen sink of notification procs
399
399
*
400
400
* Arguments:
401
-
* * message
401
+
* * message
402
402
* * ghost_sound sound to play
403
403
* * enter_link Href link to enter the ghost role being notified for
404
404
* * source The source of the notification
@@ -477,7 +477,7 @@
477
477
return
478
478
returnTRUE
479
479
480
-
/**
480
+
/**
481
481
* Offer control of the passed in mob to dead player
482
482
*
483
483
* Automatic logging and uses pollCandidatesForMob, how convenient
@@ -564,7 +564,7 @@
564
564
.=TRUE
565
565
566
566
/mob/proc/has_mouth()
567
-
returnFALSE
567
+
returnFALSE
568
568
569
569
/**
570
570
* Examine text for traits shared by multiple types.
0 commit comments