1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/plugins/ChatStart.rb
2013-08-31 15:16:05 +01:00

15 lines
262 B
Ruby

module ChatStart
@@contacts = [
"\"Prof 2\"",
"prof3@panesar"
]
def self.prof_on_connect()
@@contacts.each { | contact |
Prof::send_line("/msg " + contact)
}
Prof::send_line("/win 1")
end
end