Skip to content

Commit

Permalink
Fixed .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
lapismyt committed Jan 11, 2024
1 parent 30f23fc commit 9746f18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ piemc/__pycache__/
uid.pie
piemc_test.py
log/
pieuid.dat
piemc/config.py

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down Expand Up @@ -165,4 +167,4 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
4 changes: 2 additions & 2 deletions piemc/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@

# ONLY FOR DEVELOPERS
# Set the desired log level in uppercase (e.g., "INFO", "DEBUG", "WARNING", "ERROR", "CRITICAL")
LOG_LEVEL = "DEBUG"
DEV_MODE = True
LOG_LEVEL = "INFO"
DEV_MODE = False
2 changes: 1 addition & 1 deletion piemc/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def stop(self):
self.logger.info(self.lang['STOPPING_WAIT'])
self.running = False
self.bedrock_server.stop()
for thread in threads:
for thread in self.threads:
thread.join()
self.logger.info(self.lang['STOP'])

Expand Down

0 comments on commit 9746f18

Please sign in to comment.