Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Jan 13, 2024
1 parent 7b0f5b5 commit 5503ad9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/frontend/src/pages/drop-and-fusion.game.vue
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,6 @@ function replay() {
seed: seed,
gameMode: props.gameMode,
getMonoRenderOptions,
replaying: true,
});
attachGameEvents();
os.promiseDialog(loadMonoTextures(), async () => {
Expand Down
3 changes: 0 additions & 3 deletions packages/frontend/src/scripts/drop-and-fusion-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ export class DropAndFusionGame extends EventEmitter<{
private gameMode: 'normal' | 'yen' | 'square';
private rng: () => number;
private logs: Log[] = [];
private replaying = false;

/**
* フィールドに出ていて、かつ合体の対象となるアイテム
Expand Down Expand Up @@ -364,7 +363,6 @@ export class DropAndFusionGame extends EventEmitter<{
constructor(env: {
seed: string;
gameMode: DropAndFusionGame['gameMode'];
replaying?: boolean;
getMonoRenderOptions?: (mono: Mono) => Partial<Matter.IBodyRenderOptions>;
}) {
super();
Expand All @@ -373,7 +371,6 @@ export class DropAndFusionGame extends EventEmitter<{
this.tick = this.tick.bind(this);
//#endregion

this.replaying = !!env.replaying;
this.gameMode = env.gameMode;
this.getMonoRenderOptions = env.getMonoRenderOptions ?? null;
this.rng = seedrandom(env.seed);
Expand Down

0 comments on commit 5503ad9

Please sign in to comment.