mirror of
				https://github.com/mcMMO-Dev/mcMMO.git
				synced 2025-11-04 02:53:43 +01:00 
			
		
		
		
	Minor cleanup
This commit is contained in:
		@@ -592,9 +592,7 @@ public class ItemChecks {
 | 
				
			|||||||
            return true;
 | 
					            return true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        case INK_SACK:
 | 
					        case INK_SACK:
 | 
				
			||||||
            if (is.getData().getData() == DyeColor.BROWN.getDyeData()) {
 | 
					            return is.getData().getData() == DyeColor.BROWN.getDyeData();
 | 
				
			||||||
                return true;
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        default:
 | 
					        default:
 | 
				
			||||||
            return false;
 | 
					            return false;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,11 +15,10 @@ public class LogFilter implements Filter {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    @Override
 | 
					    @Override
 | 
				
			||||||
    public boolean isLoggable(LogRecord record) {
 | 
					    public boolean isLoggable(LogRecord record) {
 | 
				
			||||||
        if(record.getMessage().contains("[Debug]") && !debug) {
 | 
					        if (record.getMessage().contains("[Debug]") && !debug) {
 | 
				
			||||||
            return false;
 | 
					            return false;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        else {
 | 
					
 | 
				
			||||||
            return true;
 | 
					        return true;
 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user