mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-31 14:02:59 +00:00 
			
		
		
		
	disable nil optimization in virtualRebase for hex nil structure
This commit is contained in:
		| @@ -321,7 +321,7 @@ void virtualRebase_cell(cell*& base, T& at, const U& check) { | ||||
| template<class T, class U>  | ||||
| void virtualRebase(cell*& base, T& at, const U& check) { | ||||
|  | ||||
|   if(nil && WDIM == 3) { | ||||
|   if(nil && WDIM == 3 && nilv::nil_structure_index != 2) { | ||||
|     hyperpoint h = check(at); | ||||
|     auto step = [&] (int i) { | ||||
|       at = currentmap->adj(base, (i+S7/2) % S7) * at; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Zeno Rogue
					Zeno Rogue