# HG changeset patch # User Dominic Cleal # Date 1229473065 0 # Node ID f7abbe853f5d81e13b7664db00ea32cde0d8272e # Parent edb68779265bbc5d25e34130199033090576ebb9 Adding character name to downtime coincide message diff -r edb68779265b -r f7abbe853f5d skillbot.pl --- a/skillbot.pl Sat Dec 13 11:36:07 2008 +0000 +++ b/skillbot.pl Wed Dec 17 00:17:45 2008 +0000 @@ -506,9 +506,10 @@ if (skill_finish_in_downtime($f->{skill})) { $self->privmsg('#' . $config{channel}, sprintf( - "\002%s:\002 Training completion time of %s %lu will " . - "coincide with scheduled downtime at %s", - $f->{nick}, $f->{skill}->name, $f->{skill}->level, + "\002%s:\002 Completion time of %s's %s %lu " . + "skill will coincide with scheduled downtime at %s", + $f->{nick}, $f->{char}->name, + $f->{skill}->name, $f->{skill}->level, scalar(gmtime($f->{skill}->finish_time)))); }