Character Signatures

* Adds the ability for players to have predefined signatures for
specific characters
* Should none be entered, it'll revent to the old style, until changed
This commit is contained in:
skull132
2015-03-05 16:00:22 +02:00
parent 9d8349229f
commit 4a6da81963
6 changed files with 58 additions and 4 deletions
+6
View File
@@ -62,6 +62,10 @@ datum/mind
// the world.time since the mob has been brigged, or -1 if not at all
var/brigged_since = -1
// The custom signature holder
var/signature
var/signature_font
New(var/key)
src.key = key
@@ -1288,6 +1292,8 @@ datum/mind
else
world.log << "## DEBUG: mind_initialize(): No ticker ready yet! Please inform Carn"
if(!mind.name) mind.name = real_name
if(client.prefs.signature) mind.signature = client.prefs.signature
if(client.prefs.signature_font) mind.signature_font = client.prefs.signature_font
mind.current = src
//HUMAN