mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
15 lines
262 B
Ruby
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
|