diff options
Diffstat (limited to 'ircbot.bash')
-rwxr-xr-x | ircbot.bash | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ircbot.bash b/ircbot.bash index b6701c0..646c4da 100755 --- a/ircbot.bash +++ b/ircbot.bash @@ -77,6 +77,11 @@ connect() { return $? fi + if [[ -n "$IRCBOT_PASS" ]]; then + if ! sendmsg PASS "$IRCBOT_PASS"; then + return $? + fi + fi if ! sendmsg NICK "$IRCBOT_NICK"; then return $? fi |