Merge branch 'master' of https://github.com/Citadel-Station-13/Citadel-Station-13 into stacks
This commit is contained in:
@@ -38,7 +38,7 @@
|
||||
var/client/C = X
|
||||
if(C && C.holder && !C.holder.fakekey)
|
||||
assembled += "\t <font color='#FF0000'>[C.key]</font>[admin_mode? "[show_admin_info(C)]":""] ([round(C.avgping, 1)]ms)"
|
||||
Lines += sortList(assembled)
|
||||
Lines += sort_list(assembled)
|
||||
assembled.len = 0
|
||||
if(length(GLOB.mentors))
|
||||
Lines += "<b>Mentors:</b>"
|
||||
@@ -46,10 +46,10 @@
|
||||
var/client/C = X
|
||||
if(C && (!C.holder || (C.holder && !C.holder.fakekey))) //>using stuff this complex instead of just using if/else lmao
|
||||
assembled += "\t <font color='#0033CC'>[C.key]</font>[admin_mode? "[show_admin_info(C)]":""] ([round(C.avgping, 1)]ms)"
|
||||
Lines += sortList(assembled)
|
||||
Lines += sort_list(assembled)
|
||||
assembled.len = 0
|
||||
Lines += "<b>Players:</b>"
|
||||
for(var/X in sortList(GLOB.clients))
|
||||
for(var/X in sort_list(GLOB.clients))
|
||||
var/client/C = X
|
||||
if(!C)
|
||||
continue
|
||||
@@ -57,8 +57,8 @@
|
||||
if(C.holder && C.holder.fakekey)
|
||||
key = C.holder.fakekey
|
||||
assembled += "\t [key][admin_mode? "[show_admin_info(C)]":""] ([round(C.avgping, 1)]ms)"
|
||||
Lines += sortList(assembled)
|
||||
|
||||
Lines += sort_list(assembled)
|
||||
|
||||
for(var/line in Lines)
|
||||
msg += "[line]\n"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
for(var/client/T)
|
||||
targets["[T]"] = T
|
||||
|
||||
var/list/sorted = sortList(targets)
|
||||
var/list/sorted = sort_list(targets)
|
||||
var/target = input(src,"To whom shall we send a message?","Mentor PM",null) in sorted|null
|
||||
cmd_mentor_pm(targets[target],null)
|
||||
SSblackbox.record_feedback("tally", "Mentor_verb", 1, "APM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
|
||||
|
||||
@@ -133,10 +133,10 @@
|
||||
check_boost()
|
||||
if(driver.m_intent == MOVE_INTENT_WALK)
|
||||
var/deceleration = max_deceleration
|
||||
if(driver.in_throw_mode)
|
||||
if(driver.throw_mode)
|
||||
deceleration *= 1.5
|
||||
friction(deceleration, TRUE)
|
||||
else if(driver.in_throw_mode)
|
||||
else if(driver.throw_mode)
|
||||
friction(max_deceleration*1.2, TRUE)
|
||||
friction(max_deceleration/4)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user