mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-30 21:42:59 +00:00 
			
		
		
		
	Fix discontinuity in notDippingForExtra
This commit is contained in:
		| @@ -48,7 +48,7 @@ EX bool notDippingForExtra(eItem i, eItem x) { | ||||
|   int v = items[i] - min(items[x], currentLocalTreasure); | ||||
|   if(v <= 10) return true; | ||||
|   if(v >= 20) return false; | ||||
|   return v >= hrand(10) + 10; | ||||
|   return v < hrand(10) + 10; | ||||
|   } | ||||
|  | ||||
| void buildRedWall(cell *c, int gemchance) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jesse Ruderman
					Jesse Ruderman