Skip to content

Commit

Permalink
Merge pull request #8 from skuzow/develop
Browse files Browse the repository at this point in the history
v0.1.3
  • Loading branch information
skuzow authored Jul 1, 2022
2 parents 191a233 + 398e593 commit b03dee9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mcdreforged.plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "offline_whitelist",
"version": "0.1.2",
"version": "0.1.3",
"name": "OfflineWhitelist",
"description": "Offline whitelist helper",
"author": "skuzow",
Expand Down
2 changes: 1 addition & 1 deletion offline_whitelist/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def whitelist_add(source: PlayerCommandSource, username):
# player not inside whitelist or username misspelled
else:
server.execute(f'whitelist add {username}')
time.sleep(0.1)
time.sleep(1)
whitelist_json_add = utils.load_file(source, config.whitelist_path)
found = False
for player in whitelist_json_add:
Expand Down

0 comments on commit b03dee9

Please sign in to comment.