Skip to content

Commit

Permalink
Make more space for player villages
Browse files Browse the repository at this point in the history
Short-term patch for #66.

This makes the `streams_to_add_village` a bit less efficient but it
should still not be an issue.
  • Loading branch information
jakmeier committed Oct 16, 2023
1 parent 097bcc8 commit 8167969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddlers-shared-lib/src/game_mechanics/map.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub const MAP_H: u32 = 11;
pub const MAP_MAX_X: u32 = 20;
pub const MAP_MAX_X: u32 = 1000;
pub const MAP_STREAM_AREA_W: f32 = 5.0;

pub fn map_distance(a: (f32, f32), b: (f32, f32)) -> f32 {
Expand Down

0 comments on commit 8167969

Please sign in to comment.