Skip to content

Commit 9e905b5

Browse files
authored
125 enhancement user addremove voicexptextxptextcount (#126)
* Increase-and-Decrease-user commands * Extended gitignore * fixed-errors * changed version number
1 parent c0fc814 commit 9e905b5

3 files changed

Lines changed: 471 additions & 8 deletions

File tree

.gitignore

Lines changed: 136 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,139 @@
1-
__pycache__
2-
.vscode
3-
.mypy_cache
4-
.null-ls*
5-
61
# Local config files
7-
82
/data/*
93

4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
pip-wheel-metadata/
27+
share/python-wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.nox/
47+
.coverage
48+
.coverage.*
49+
.cache
50+
nosetests.xml
51+
coverage.xml
52+
*.cover
53+
*.py,cover
54+
.hypothesis/
55+
.pytest_cache/
56+
57+
# Translations
58+
*.mo
59+
*.pot
60+
61+
# Django stuff:
62+
*.log
63+
local_settings.py
64+
db.sqlite3
65+
db.sqlite3-journal
66+
67+
# Flask stuff:
68+
instance/
69+
.webassets-cache
70+
71+
# Scrapy stuff:
72+
.scrapy
73+
74+
# Sphinx documentation
75+
docs/_build/
76+
77+
# PyBuilder
78+
target/
79+
80+
# Jupyter Notebook
81+
.ipynb_checkpoints
82+
83+
# IPython
84+
profile_default/
85+
ipython_config.py
86+
87+
# pyenv
88+
.python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# celery beat schedule file
98+
celerybeat-schedule
99+
100+
# SageMath parsed files
101+
*.sage.py
102+
103+
# Environments
104+
.env
105+
.venv
106+
env/
107+
venv/
108+
ENV/
109+
env.bak/
110+
venv.bak/
111+
112+
# Spyder project settings
113+
.spyderproject
114+
.spyproject
115+
116+
# Rope project settings
117+
.ropeproject
118+
119+
# mkdocs documentation
120+
/site
121+
122+
# mypy
123+
.mypy_cache/
124+
.dmypy.json
125+
dmypy.json
126+
127+
# Pyre type checker
128+
.pyre/
129+
130+
# MODIFIED SECITON
131+
#PyCharm project
132+
.idea/
133+
134+
#MacOS-Finder
135+
.DS_Store
136+
137+
#Other
138+
.vscode
139+
.null-ls*

cogs/commandlistener.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def on_ready(self):
5252
# Sends message to mods, when bot is online
5353
print("Now Online")
5454
await self.utils.sendModsMessage(
55-
"Bot is now online.\nVersion:\tDiscordBot DataBot v2.6.2"
55+
"Bot is now online.\nVersion:\tDiscordBot DataBot v2.6.3"
5656
)
5757
# Sets the bot's presence to "Online" or "Do not Disturb" to indicate if it's logging or not.
5858
if self.ch.getFromConfig("log") == "True":

0 commit comments

Comments
 (0)