Skip to content

Commit

Permalink
Add forgotten variable in seen.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
incognico committed Jun 4, 2013
1 parent ace9f3f commit 2513fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/seen.pm
Expand Up @@ -144,7 +144,7 @@ sub on_privmsg {
main::msg($target, '%s was last seen %s ago, being kicked from %s by %s with reason %s', $$guy{nick}, duration(time - $$guy{ts}), $$guy{chan}, $$guy{kicker}, $$guy{reason}); main::msg($target, '%s was last seen %s ago, being kicked from %s by %s with reason %s', $$guy{nick}, duration(time - $$guy{ts}), $$guy{chan}, $$guy{kicker}, $$guy{reason});
} }
elsif ($$guy{type} eq 'part') { elsif ($$guy{type} eq 'part') {
main::msg($target, '%s (%s@%s) was last seen %s ago, parting %s with reason: %s', $$guy{nick}, $$guy{user}, $$guy{host}, duration(time - $$guy{ts}), $$guy{reason}); main::msg($target, '%s (%s@%s) was last seen %s ago, parting %s with reason: %s', $$guy{nick}, $$guy{user}, $$guy{host}, duration(time - $$guy{ts}), $$guy{chan}, $$guy{reason});
} }
elsif ($$guy{type} eq 'quit') { elsif ($$guy{type} eq 'quit') {
main::msg($target, '%s (%s@%s) was last seen %s ago, quitting with reason: %s', $$guy{nick}, $$guy{user}, $$guy{host}, duration(time - $$guy{ts}), $$guy{reason}); main::msg($target, '%s (%s@%s) was last seen %s ago, quitting with reason: %s', $$guy{nick}, $$guy{user}, $$guy{host}, duration(time - $$guy{ts}), $$guy{reason});
Expand Down

0 comments on commit 2513fe6

Please sign in to comment.