Skip to content

Commit

Permalink
Merge pull request #41 from Anatoly03/update-4
Browse files Browse the repository at this point in the history
Change nothing
  • Loading branch information
Anatoly03 authored Dec 4, 2024
2 parents 4e0496b + 457be9b commit f93b02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scheduler/block.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Scheduler from "./base.js";

import GameConnection from "../game.connection.js";
import { WorldBlockPlacedPacket } from "../network/pixelwalker_pb.js";

Check failure on line 3 in src/scheduler/block.ts

View workflow job for this annotation

GitHub Actions / publish-documentation

Cannot find module '../network/pixelwalker_pb.js' or its corresponding type declarations.
import GameClient from "../game.js";

Expand All @@ -15,8 +14,9 @@ type Change = {
export default class BlockScheduler extends Scheduler<Change> {
override LOOP_FREQUENCY = 25;
override ELEMENTS_PER_TICK = 200;
override INBETWEEN_DELAY = 2;
override INBETWEEN_DELAY = 5;
override RETRY_FREQUENCY = 500;

public BLOCKS_PER_TICK = 400;

constructor(private game: GameClient) {
Expand Down

0 comments on commit f93b02a

Please sign in to comment.