Core: Change "Unreachable Items" to "Unreachable progression items" in playthrough warning for clarification (#4287)
This commit is contained in:
		
							parent
							
								
									1365bd7a0a
								
							
						
					
					
						commit
						7c00c9a49d
					
				| 
						 | 
					@ -1545,7 +1545,7 @@ class Spoiler:
 | 
				
			||||||
                [f"  {location}: {item}" for (location, item) in sphere.items()] if isinstance(sphere, dict) else
 | 
					                [f"  {location}: {item}" for (location, item) in sphere.items()] if isinstance(sphere, dict) else
 | 
				
			||||||
                [f"  {item}" for item in sphere])) for (sphere_nr, sphere) in self.playthrough.items()]))
 | 
					                [f"  {item}" for item in sphere])) for (sphere_nr, sphere) in self.playthrough.items()]))
 | 
				
			||||||
            if self.unreachables:
 | 
					            if self.unreachables:
 | 
				
			||||||
                outfile.write('\n\nUnreachable Items:\n\n')
 | 
					                outfile.write('\n\nUnreachable Progression Items:\n\n')
 | 
				
			||||||
                outfile.write(
 | 
					                outfile.write(
 | 
				
			||||||
                    '\n'.join(['%s: %s' % (unreachable.item, unreachable) for unreachable in self.unreachables]))
 | 
					                    '\n'.join(['%s: %s' % (unreachable.item, unreachable) for unreachable in self.unreachables]))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue