Skip to content

Commit

Permalink
change so foraging takes two ticks (and two chaos)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemolding committed Jan 17, 2024
1 parent 40612ad commit 2deeccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/src/constants.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const FAMILIAR_LIMIT: u32 = 1;
const BARRIERS_LIMIT: u32 = 3;

// How many ticks each kind of action takes
const TICKS_PER_FORAGE: u32 = 3;
const TICKS_PER_FORAGE: u32 = 2;
const TICKS_PER_SUMMON: u32 = 5;
const TICKS_PER_SEND: u32 = 3;
const TICKS_PER_SEND: u32 = 2;
const CHAOS_PER_TICK: u32 = 1;

/// Valid IDs ///
Expand Down

0 comments on commit 2deeccd

Please sign in to comment.