Updates map_drops.yml (#7676)

* adjusted the rate in map_drops.yml to 1/100000 instead of 1/10000

Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
This commit is contained in:
Atemo
2023-04-08 16:48:01 +02:00
committed by GitHub
parent 8a4b34ef6a
commit 74b2834502
8 changed files with 71 additions and 23 deletions

View File

@@ -43,6 +43,3 @@ int32 rnd_value( int32 min, int32 max ){
return min + (int32)( rnd_uniform() * ( max - min + 1 ) );
}
bool rnd_chance( uint16 chance, uint16 base ){
return rnd_value( 0, base ) < chance;
}