mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-10 06:37:05 +01:00
up ports a bunch of TGS commands (#17961)
* up ports a bunch of TGS commands * . * needing this * ... * Update datacore.dm * fix that * at least stack that * rework all user name handling * urg * urg * . * . * . * up port this * make this clearer * . * . * . * fix that * . * add returns * player ticket chat * this * . * . * umm * adjust messages * clean smitecode up * . * ummm * . * command filter
This commit is contained in:
@@ -867,7 +867,7 @@
|
||||
message_admins(span_blue("[usr.client.ckey] has banned [M.ckey].\nReason: [reason]\nThis will be removed in [mins] minutes."))
|
||||
var/datum/ticket/T = M.client ? M.client.current_ticket : null
|
||||
if(T)
|
||||
T.Resolve()
|
||||
T.Resolve(usr)
|
||||
qdel(M.client)
|
||||
//qdel(M) // See no reason why to delete mob. Important stuff can be lost. And ban can be lifted before round ends.
|
||||
if("No")
|
||||
@@ -895,7 +895,7 @@
|
||||
DB_ban_record(BANTYPE_PERMA, M, -1, reason)
|
||||
var/datum/ticket/T = M.client ? M.client.current_ticket : null
|
||||
if(T)
|
||||
T.Resolve()
|
||||
T.Resolve(usr)
|
||||
qdel(M.client)
|
||||
//qdel(M)
|
||||
if("Cancel")
|
||||
|
||||
@@ -181,8 +181,11 @@
|
||||
if(!istype(target))
|
||||
return
|
||||
|
||||
var/real_user = user ? user : usr
|
||||
var/user_name = real_user ? key_name(real_user) : "Remotely (Discord)"
|
||||
|
||||
to_chat(target,"You've been hit by bluespace artillery!")
|
||||
log_and_message_admins("has been hit by Bluespace Artillery fired by [key_name(user ? user : usr)]", target)
|
||||
log_and_message_admins("has been hit by Bluespace Artillery fired by [user_name]", target)
|
||||
|
||||
target.setMoveCooldown(2 SECONDS)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user