diff options
Diffstat (limited to 'actions/join.py')
| -rw-r--r-- | actions/join.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/join.py b/actions/join.py index 7a36947..44246be 100644 --- a/actions/join.py +++ b/actions/join.py | |||
| @@ -4,4 +4,5 @@ class join: | |||
| 4 | self = [] | 4 | self = [] |
| 5 | 5 | ||
| 6 | def getAction(self, data): | 6 | def getAction(self, data): |
| 7 | return 'JOIN ' + data[data.index('join')+5:] | 7 | channel = data.params.split(' ')[3] |
| 8 | return 'JOIN ' + channel | ||