reduces trap from testing values
This commit is contained in:
parent
43d2dbc12b
commit
6302951694
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ pub fn spawn_room(ecs: &mut World, room: &Rect, map_depth: i32) {
|
||||||
|
|
||||||
// 20 mobs : 6 items : 2 food : 1 trap
|
// 20 mobs : 6 items : 2 food : 1 trap
|
||||||
fn category_table() -> RandomTable {
|
fn category_table() -> RandomTable {
|
||||||
return RandomTable::new().add("mob", 20).add("item", 6).add("food", 2).add("trap", 1000);
|
return RandomTable::new().add("mob", 20).add("item", 6).add("food", 2).add("trap", 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn debug_table() -> RandomTable {
|
fn debug_table() -> RandomTable {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue