mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Silly MSVC doesn't know how to handle type conversions for parameters of pow(). Help it.
This commit is contained in:
		@@ -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();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user