mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
mig fix
This commit is contained in:
parent
f2eedf81f4
commit
acf9111141
5
server/src/migrations/V40__meat_fix.sql
Normal file
5
server/src/migrations/V40__meat_fix.sql
Normal file
@ -0,0 +1,5 @@
|
||||
-- xx
|
||||
UPDATE item
|
||||
SET item_definition_id = 'common.items.crafting_ing.cloth.linen_red' WHERE item_definition_id = 'common.items.crafting_ing.cloth_scraps_red';
|
||||
UPDATE item
|
||||
SET item_definition_id = 'common.items.crafting_ing.cloth.linen' WHERE item_definition_id = 'common.items.crafting_ing.cloth_scraps';
|
@ -163,10 +163,10 @@ pub fn apply_scatter_to(canvas: &mut Canvas, rng: &mut impl Rng) {
|
||||
((c.rockiness - 0.5).max(0.025) * 1.0e-3, None)
|
||||
}),
|
||||
(Copper, false, |c, _| {
|
||||
((c.rockiness - 0.1).max(0.025) * 1.5e-3, None)
|
||||
((c.rockiness - 0.5).max(0.0) * 1.5e-3, None)
|
||||
}),
|
||||
(Tin, false, |c, _| {
|
||||
((c.rockiness - 0.5).max(0.025) * 1.5e-3, None)
|
||||
((c.rockiness - 0.5).max(0.0) * 1.5e-3, None)
|
||||
}),
|
||||
// Don't spawn Mushrooms in snowy regions
|
||||
(Mushroom, false, |c, _| {
|
||||
|
Loading…
Reference in New Issue
Block a user