rom24-quickmud-python 2.5.3__py3-none-any.whl → 2.5.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mud/__main__.py CHANGED
@@ -31,7 +31,7 @@ def loadtestuser():
31
31
 
32
32
 
33
33
  @cli.command()
34
- def socketserver(host: str = "0.0.0.0", port: int = 5000):
34
+ def socketserver(host: str = "0.0.0.0", port: int = 5001):
35
35
  """Start the telnet server."""
36
36
  asyncio.run(start_telnet(host=host, port=port))
37
37
 
mud/config.py CHANGED
@@ -12,7 +12,7 @@ load_dotenv()
12
12
 
13
13
  # Configuration for servers
14
14
  DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///mud.db")
15
- PORT = int(os.getenv("PORT", 5000))
15
+ PORT = int(os.getenv("PORT", 5001))
16
16
  HOST = os.getenv("HOST", "0.0.0.0")
17
17
 
18
18
  # Comma separated list of allowed CORS origins
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rom24-quickmud-python
3
- Version: 2.5.3
3
+ Version: 2.5.4
4
4
  Summary: A modern Python port of the ROM 2.4b6 MUD engine with full telnet server and JSON world loading
5
5
  Author-email: Mark Jedrzejczyk <mark.jedrzejczyk@gmail.com>
6
6
  Maintainer-email: Mark Jedrzejczyk <mark.jedrzejczyk@gmail.com>
@@ -92,13 +92,15 @@ pip install quickmud
92
92
 
93
93
  Run a QuickMUD server:
94
94
 
95
- **Telnet Server (port 5000):**
95
+ **Telnet Server (port 5001):**
96
96
  ```bash
97
97
  python3 -m mud socketserver
98
98
  # or
99
99
  mud socketserver
100
100
  ```
101
101
 
102
+ > **⚠️ macOS Users:** Port 5000 is used by macOS AirPlay Receiver (Monterey+). QuickMUD defaults to port 5001 to avoid conflicts. To use a different port: `python3 -m mud socketserver --port 4000`
103
+
102
104
  **WebSocket Server (port 8000):**
103
105
  ```bash
104
106
  python3 -m mud websocketserver
@@ -122,7 +124,7 @@ Connect to the server:
122
124
 
123
125
  **Via Telnet:**
124
126
  ```bash
125
- telnet localhost 5000
127
+ telnet localhost 5001
126
128
  ```
127
129
 
128
130
  **Via SSH:**
@@ -263,7 +265,7 @@ Build and run the Python server with Docker:
263
265
 
264
266
  ```bash
265
267
  docker build -t quickmud .
266
- docker run -p 5000:5000 quickmud
268
+ docker run -p 5001:5001 quickmud
267
269
  ```
268
270
 
269
271
  Or use docker-compose to rebuild on changes and mount the repository:
@@ -275,7 +277,7 @@ docker-compose up
275
277
  Connect via:
276
278
 
277
279
  ```bash
278
- telnet localhost 5000
280
+ telnet localhost 5001
279
281
  ```
280
282
 
281
283
  ## Data Models
@@ -1,7 +1,7 @@
1
1
  mud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- mud/__main__.py,sha256=WtSvCWscFHIlT7F_YWzIhN5xkTz0Ng8k83WbD-tuGxU,1330
2
+ mud/__main__.py,sha256=LfEEx3DfE91OKqwnTVrRONOvZ-8RXlVc5qYlOqvuLno,1330
3
3
  mud/advancement.py,sha256=QWGYRv337unJIzQOupLiIEfKFBge9xvRCc4PQNc0Aq8,6218
4
- mud/config.py,sha256=KnpW64U5rZyT3rP4dMn3GW8rsO8v7b4EJ218c5vVABs,7057
4
+ mud/config.py,sha256=FmuhwTeR5798i_dHBJvZ_EQ4d_eNO8oMa8ni8fxiHhs,7057
5
5
  mud/entrypoint.py,sha256=WxBW3GfbKCOtSD5rx2ccSAC7lA3YRFi7DJ_EZvi1rmo,854
6
6
  mud/game_loop.py,sha256=uMimgn5yTGtaB--QDRHYzA-TLNvbQ27VKklS3Rnnl_8,40841
7
7
  mud/game_tick_scheduler.py,sha256=7ybo2ekDQQPGN82u6fhcrrg7tZ-JMtGy4UUrZv9_Umo,1539
@@ -203,9 +203,9 @@ mud/world/movement.py,sha256=Y7it7pXrPORgKyy2tRB8br_kb4-s9UK-gj0N-E2U9oM,18695
203
203
  mud/world/obj_find.py,sha256=SU0nkluF7dHaarlkQsRJ16JrmtzNReIBDEU7asQ4XLc,5265
204
204
  mud/world/vision.py,sha256=M8JZbMSoSniNjuSNHsggGuiJMy-hqzqsDaPwgDaMygU,10268
205
205
  mud/world/world_state.py,sha256=2ktEPgqzkeEzXbezKJ3n36xiAKI0aK5qrD8OKyQY73Q,8120
206
- rom24_quickmud_python-2.5.3.dist-info/licenses/LICENSE,sha256=anQ2j9As6sIC8tZgQCXbo0-09JDH9vPiqhA9djnOvkY,1078
207
- rom24_quickmud_python-2.5.3.dist-info/METADATA,sha256=qPMAPJBQroYdEEPZfCjpvIIFV8rHwE0o0yKaLEXOkWc,12400
208
- rom24_quickmud_python-2.5.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
209
- rom24_quickmud_python-2.5.3.dist-info/entry_points.txt,sha256=VFru08UQTXZA_CkK-NBjJmWHyEX5a3864fQHjhaojbw,41
210
- rom24_quickmud_python-2.5.3.dist-info/top_level.txt,sha256=Fk1WPmabIIjp7_iZXLYpbAVqiq7lG7TeAHt30AsOKtQ,4
211
- rom24_quickmud_python-2.5.3.dist-info/RECORD,,
206
+ rom24_quickmud_python-2.5.4.dist-info/licenses/LICENSE,sha256=anQ2j9As6sIC8tZgQCXbo0-09JDH9vPiqhA9djnOvkY,1078
207
+ rom24_quickmud_python-2.5.4.dist-info/METADATA,sha256=qQqnMhmufmkR5PCIgZG5s16O3C5HY6V5tgsw9sBBxBE,12602
208
+ rom24_quickmud_python-2.5.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
209
+ rom24_quickmud_python-2.5.4.dist-info/entry_points.txt,sha256=VFru08UQTXZA_CkK-NBjJmWHyEX5a3864fQHjhaojbw,41
210
+ rom24_quickmud_python-2.5.4.dist-info/top_level.txt,sha256=Fk1WPmabIIjp7_iZXLYpbAVqiq7lG7TeAHt30AsOKtQ,4
211
+ rom24_quickmud_python-2.5.4.dist-info/RECORD,,