Skip to content

Commit

Permalink
feat(#267): Removed dumb logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lxgr-linux committed Jul 21, 2024
1 parent 6aa4195 commit 2bc599a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pokete.py
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ def _game(_map: PlayMap):
mvp.movemap.code_label.outp(figure.map.pretty_name)
codes(inp)
_ev.clear()
loops.std(ctx=ctx)

for statement, x, y in zip(
[
figure.x + 6 > mvp.movemap.x + mvp.movemap.width,
Expand All @@ -691,6 +691,7 @@ def _game(_map: PlayMap):
if statement:
mvp.movemap.set(mvp.movemap.x + x, mvp.movemap.y + y)
pc_manager.movemap_move()
loops.std(ctx)


def intro(ctx: Context):
Expand Down Expand Up @@ -751,7 +752,6 @@ def main():
loading_screen.map, ver_change)
PreGameMap()(figure)
game_map = figure.map
logging.info("%s, %s", figure.map.name, figure.added)
if figure.name == "DEFAULT":
intro(
Context(PeriodicEventManager([]), mvp.movemap, mvp.movemap, figure)
Expand Down
3 changes: 0 additions & 3 deletions pokete_classes/roadmap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""Contains all classes relevant to show the roadmap"""
import logging

import scrap_engine as se
import pokete_data as p_data
import pokete_classes.ob_maps as obmp
Expand Down Expand Up @@ -273,7 +271,6 @@ def __init__(self, station: Station):
self.box: Box | None = None

def tick(self, tick: int):
logging.info("yws" + str(self.blink))
if tick % 10 == 0:
if self.blink:
self.station.blink()
Expand Down

0 comments on commit 2bc599a

Please sign in to comment.