diff --git a/packages/hardhat/deploy/00_deploy_game.ts b/packages/hardhat/deploy/00_deploy_game.ts index 809b1a80..b0b09a5e 100644 --- a/packages/hardhat/deploy/00_deploy_game.ts +++ b/packages/hardhat/deploy/00_deploy_game.ts @@ -42,8 +42,14 @@ const deployGameContract: DeployFunction = async function (hre: HardhatRuntimeEn await deploy("Game", { from: deployer, // Contract constructor arguments - args: [useBiomesWorldAddress, { lowerSouthwestCorner: { x: 433, y: 25, z: -204 }, size: { x: 5, y: 5, z: 4 } }], - value: "100000000000000", + args: [ + useBiomesWorldAddress, + { + lowerSouthwestCorner: { x: 221, y: 60, z: -93 }, + size: { x: 3, y: 3, z: 3 }, + }, + ], + value: "16000000000000000", log: true, // autoMine: can be passed to the deploy function to make the deployment process faster on local networks by // automatically mining the contract deployment transaction. There is no effect on live networks.