diff options
| author | 2018-09-05 13:00:04 +0100 | |
|---|---|---|
| committer | 2018-09-05 13:00:04 +0100 | |
| commit | 1cc850350d72eed06a8aa41d1cf389430c06e9c5 (patch) | |
| tree | a1053767288469cbecd492f6ff3064a7bdbe85c1 /IRCUser.py | |
| parent | Add another control to prevent coin duplication if someone manages to send coins (diff) | |
| signature | ||
user.id -> user._id; forgot to do this
Diffstat (limited to 'IRCUser.py')
| -rw-r--r-- | IRCUser.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ import IRCBuffer class User(object): def __init__(self, nickname, id, server, bot): self.set_nickname(nickname) - self.id = id + self._id = id self.username = None self.hostname = None self.realname = None |
