mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-11-04 07:43:02 +00:00 
			
		
		
		
	Only show graves in IF with default colors if higher_contrast is set.
This commit is contained in:
		@@ -209,10 +209,12 @@ void celldrawer::setcolors() {
 | 
			
		||||
      for(int a=0; a<21; a++)
 | 
			
		||||
        if((b >> a) & 1)
 | 
			
		||||
          fcol += variant::features[a].color_change;
 | 
			
		||||
      /*if(c->wall == waAncientGrave)
 | 
			
		||||
        wcol = 0x080808;
 | 
			
		||||
      else if(c->wall == waFreshGrave)
 | 
			
		||||
        wcol = 0x202020;*/
 | 
			
		||||
      if(!higher_contrast) {
 | 
			
		||||
        if(c->wall == waAncientGrave)
 | 
			
		||||
          wcol = 0x080808;
 | 
			
		||||
        else if(c->wall == waFreshGrave)
 | 
			
		||||
          wcol = 0x202020;
 | 
			
		||||
        }
 | 
			
		||||
      break;
 | 
			
		||||
      }
 | 
			
		||||
    #endif
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user