mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-30 21:42:59 +00:00 
			
		
		
		
	giant frogs are now allowed to jump 1 cell
This commit is contained in:
		| @@ -535,8 +535,9 @@ EX bool passable_for(eMonster m, cell *w, cell *from, flagtype extra) { | ||||
|       } | ||||
|     return !pseudohept(w) && passable(w, from, extra); | ||||
|     } | ||||
|   if(m == moFrog) | ||||
|     return (!from || from == w) ? passable(w, from, extra) : check_jump(from, w, extra, dummy) == 3; | ||||
|   if(m == moFrog) { | ||||
|     return isNeighbor1(from, w) ? passable(w, from, extra) : check_jump(from, w, extra, dummy) == 3; | ||||
|     } | ||||
|   if(m == moPhaser) | ||||
|     return isNeighbor1(from, w) ? passable(w, from, extra) : check_phase(from, w, extra, dummy) == 3; | ||||
|   if(m == moVaulter) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Zeno Rogue
					Zeno Rogue