mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Silly MSVC doesn't know how to handle type conversions for parameters of pow(). Help it.
This commit is contained in:
parent
a91eb36277
commit
fe64f2b673
@ -592,7 +592,7 @@ public:
|
||||
float chance = abm->getTriggerChance();
|
||||
if(chance == 0)
|
||||
chance = 1;
|
||||
aabm.chance = 1.0 / pow(1.0 / chance, intervals);
|
||||
aabm.chance = 1.0 / pow((float)1.0/chance, (float)intervals);
|
||||
if(aabm.chance == 0)
|
||||
aabm.chance = 1;
|
||||
std::set<std::string> contents_s = abm->getTriggerContents();
|
||||
|
Loading…
Reference in New Issue
Block a user