Added null-check for lore
This commit is contained in:
		
							parent
							
								
									8889a16bdc
								
							
						
					
					
						commit
						4efa26fe0e
					
				@ -152,10 +152,12 @@ public class LinkedBeaconTeleporterManager {
 | 
			
		||||
    String serialiseBeaconItem(String name, List<String> lore){
 | 
			
		||||
        // get name and remove control-chars
 | 
			
		||||
        String str = name.replace("\\", "\\\\");
 | 
			
		||||
        if(lore != null){
 | 
			
		||||
            for (String loreLine : lore) {
 | 
			
		||||
                // get lore-lines and remove control-chars
 | 
			
		||||
                str += "\n"+ loreLine.replace("\\", "\\\\");
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return str;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user