Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
Fixed a little problem
Browse files Browse the repository at this point in the history
  • Loading branch information
M-logique committed Sep 8, 2024
1 parent 49f900c commit 6aeec83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/utils/tools.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys
from ctypes import CDLL, c_char_p

spammer = CDLL("./private/spammer.so") if not sys.platform.startswith('win') else CDLL("./shared/spammer.dll")
spammer = CDLL("./shared/spammer.so") if not sys.platform.startswith('win') else CDLL("./shared/spammer.dll")
spammer.SendDirectMessages.argtypes = [c_char_p, c_char_p]
spammer.SendChannelMessages.argtypes = [c_char_p, c_char_p, c_char_p]

Expand Down

0 comments on commit 6aeec83

Please sign in to comment.