Fix v3 api not building chat user datum

This commit is contained in:
Jordan Brown
2018-05-06 12:31:31 -04:00
committed by GitHub
parent 8d84c41899
commit adaaa24fd2
+4 -1
View File
@@ -40,7 +40,10 @@
if(!command_type)
return FALSE
var/datum/tgs_chat_command/stc = new command_type
return stc.Run(sender, params) || TRUE
var/datum/tgs_chat_user/user = new
user.friendly_name = sender
user.mention = sender
return stc.Run(user, params) || TRUE
/*