Skip to content

Commit

Permalink
matching fix of MC-265908
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsjo committed Nov 27, 2023
1 parent 74159c5 commit 8eb2f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jigsaw/JigsawGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class JigsawGenerator {
const random = new LegacyRandom(BigInt(Date.now()))
const aliasLookup = PoolAliasLookup.build(this.poolAliases, random.fork())

const pool = await TemplatePool.fromName(this.datapack, this.startingPool, false) // starting pool has no expansion hack; and no pool aliasing (MC-265908)
const pool = await TemplatePool.fromName(this.datapack, aliasLookup.lookup(this.startingPool), false) // starting pool has no expansion hack; and no pool aliasing (MC-265908)
const poolElement = pool.getShuffeledElements()[0]

const startRotation = getRandomInt(4) as Rotation
Expand Down

0 comments on commit 8eb2f78

Please sign in to comment.