Skip to content

Commit

Permalink
fix millions quest
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Nov 12, 2024
1 parent 974f86f commit 3dc14db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions dojo_mainnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
rpc_url = "https://api.cartridge.gg/x/starknet/mainnet"
account_address = "0x05231aaeb1e500dc734368617de7352a1032767fa6420134518e96e0ea5890c6"
keystore = "../../../dopewars_key"
world_block = 889000

[world]
name = "Dope Wars"
Expand Down
2 changes: 1 addition & 1 deletion manifest_mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@
},
{
"address": "0x44a23bbfe03ffe90d3c23fb6e5a8ad0341036c039363dfa6f3513278aa51fca",
"class_hash": "0x6d4a2dc65947a9648b9657f93bad66fde5c188a23bbf8dd90620519673ebf3",
"class_hash": "0x22cb7fbd5865cfe96a9b6582eae5fa508c9af1b0563a004e881f171948dac28",
"abi": [
{
"type": "impl",
Expand Down
2 changes: 1 addition & 1 deletion src/systems/helpers/trading.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ fn sell(ref game_store: GameStore, trade: Trade) {
}
);

if game_store.game.is_ranked() && total > 99_999_999 && !game_store.player.traded_million {
if game_store.game.is_ranked() && total > 999_999 && !game_store.player.traded_million {
game_store.player.traded_million = true;

let bushido_store = BushidoStoreTrait::new(store.world);
Expand Down

0 comments on commit 3dc14db

Please sign in to comment.