39 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.util.datafix.schemas;
 | |
| 
 | |
| import com.mojang.datafixers.DSL;
 | |
| import com.mojang.datafixers.schemas.Schema;
 | |
| import com.mojang.datafixers.types.templates.TypeTemplate;
 | |
| import java.util.Map;
 | |
| import java.util.function.Supplier;
 | |
| import net.minecraft.util.datafix.fixes.References;
 | |
| 
 | |
| public class V3078 extends NamespacedSchema {
 | |
| 	public V3078(int versionKey, Schema parent) {
 | |
| 		super(versionKey, parent);
 | |
| 	}
 | |
| 
 | |
| 	protected static void registerMob(Schema schema, Map<String, Supplier<TypeTemplate>> map, String name) {
 | |
| 		schema.registerSimple(map, name);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Map<String, Supplier<TypeTemplate>> registerEntities(Schema schema) {
 | |
| 		Map<String, Supplier<TypeTemplate>> map = super.registerEntities(schema);
 | |
| 		registerMob(schema, map, "minecraft:frog");
 | |
| 		registerMob(schema, map, "minecraft:tadpole");
 | |
| 		return map;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Map<String, Supplier<TypeTemplate>> registerBlockEntities(Schema schema) {
 | |
| 		Map<String, Supplier<TypeTemplate>> map = super.registerBlockEntities(schema);
 | |
| 		schema.register(
 | |
| 			map,
 | |
| 			"minecraft:sculk_shrieker",
 | |
| 			(Supplier<TypeTemplate>)(() -> DSL.optionalFields(
 | |
| 				"listener", DSL.optionalFields("event", DSL.optionalFields("game_event", References.GAME_EVENT_NAME.in(schema)))
 | |
| 			))
 | |
| 		);
 | |
| 		return map;
 | |
| 	}
 | |
| }
 |