Skip to content

Commit

Permalink
redeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Apr 15, 2024
1 parent 7143796 commit ad8ba86
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/config/drugs.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Speed,
drug_id: Drugs::Speed.into(),
base: 150,
step: 4,
step: 8,
weight: 14,
name: Bytes16Impl::from('Speed')
}
Expand All @@ -156,7 +156,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Weed,
drug_id: Drugs::Weed.into(),
base: 402,
step: 8,
step: 16,
weight: 19,
name: Bytes16Impl::from('Weed')
}
Expand All @@ -168,7 +168,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Shrooms,
drug_id: Drugs::Shrooms.into(),
base: 906,
step: 16,
step: 32,
weight: 27,
name: Bytes16Impl::from('Shrooms')
}
Expand All @@ -180,7 +180,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Acid,
drug_id: Drugs::Acid.into(),
base: 1914,
step: 32,
step: 64,
weight: 37,
name: Bytes16Impl::from('Acid')
}
Expand All @@ -192,7 +192,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Ketamine,
drug_id: Drugs::Ketamine.into(),
base: 3930,
step: 64,
step: 128,
weight: 52,
name: Bytes16Impl::from('Ketamine')
}
Expand All @@ -204,7 +204,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Heroin,
drug_id: Drugs::Heroin.into(),
base: 7962,
step: 128,
step: 256,
weight: 72,
name: Bytes16Impl::from('Heroin')
}
Expand All @@ -216,7 +216,7 @@ fn initialize_drug_config(world: IWorldDispatcher) {
drug: Drugs::Cocaine,
drug_id: Drugs::Cocaine.into(),
base: 16026,
step: 256,
step: 512,
weight: 100,
name: Bytes16Impl::from('Cocaine')
}
Expand Down
2 changes: 1 addition & 1 deletion src/systems/ryo.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ mod ryo {
ryo_config.paused = false;

ryo_config.leaderboard_version = 1;
ryo_config.leaderboard_duration = FEW_MIN; // ONE_WEEK
ryo_config.leaderboard_duration = 8 * ONE_HOUR; // ONE_WEEK

ryo_config.paper_fee = 100; // in ether
ryo_config.treasury_fee_pct = 5;
Expand Down

0 comments on commit ad8ba86

Please sign in to comment.