fix server

This commit is contained in:
MeexReay 2024-12-22 01:20:54 +03:00
parent 3a6df05fb7
commit 8e007763bf
5 changed files with 34 additions and 28 deletions

View file

@ -3,20 +3,9 @@ import asyncio, time
from network import startServer
from player import Player
from block import Block
from world import *
from config import *
def getPlayers():
global WORLD
for b in WORLD:
if type(b) == Player:
yield b
def getPlayer(name):
global WORLD
for b in WORLD:
if type(b) == Player:
if b.name == name:
return b
def current_milli_time():
return round(time.time() * 1000)
@ -45,11 +34,5 @@ async def main():
asyncio.get_event_loop().create_task(renderTimer())
await startServer(HOST, PORT)
WORLD = [
Block(-1, -1, "normal", "#555", True),
Block(0, -1, "spawn", "#2ad", True),
Block(1, -1, "normal", "#555", True)
]
if __name__ == "__main__":
asyncio.run(main())