11package com .lukasabbe .bookshelfinspector ;
22
3- import net .minecraft .resources .ResourceLocation ;
3+ import net .minecraft .resources .Identifier ;
44import org .slf4j .Logger ;
55import org .slf4j .LoggerFactory ;
66
@@ -9,9 +9,9 @@ public class Constants {
99 public static final String MOD_NAME = "Bookshelf Inspector" ;
1010 public static final Logger LOG = LoggerFactory .getLogger (MOD_NAME );
1111
12- public static final ResourceLocation BOOK_SHELF_INVENTORY_REQUEST_PACKET_ID = ResourceLocation .fromNamespaceAndPath (MOD_ID ,"book_shelf_inventory_request" );
13- public static final ResourceLocation BOOK_SHELF_INVENTORY_PACKET_ID = ResourceLocation .fromNamespaceAndPath (MOD_ID ,"book_shelf_inventory" );
14- public static final ResourceLocation MOD_CHECK_PACKET_ID = ResourceLocation .fromNamespaceAndPath (MOD_ID ,"mod_check" );
15- public static final ResourceLocation LECTERN_INVENTORY_REQUEST_PACKET_ID = ResourceLocation .fromNamespaceAndPath (MOD_ID , "lectern_inventory_request" );
16- public static final ResourceLocation SHELF_INVENTORY_REQUEST_PACKET_ID = ResourceLocation .fromNamespaceAndPath (MOD_ID ,"shelf_inventory_request" );
12+ public static final Identifier BOOK_SHELF_INVENTORY_REQUEST_PACKET_ID = Identifier .fromNamespaceAndPath (MOD_ID ,"book_shelf_inventory_request" );
13+ public static final Identifier BOOK_SHELF_INVENTORY_PACKET_ID = Identifier .fromNamespaceAndPath (MOD_ID ,"book_shelf_inventory" );
14+ public static final Identifier MOD_CHECK_PACKET_ID = Identifier .fromNamespaceAndPath (MOD_ID ,"mod_check" );
15+ public static final Identifier LECTERN_INVENTORY_REQUEST_PACKET_ID = Identifier .fromNamespaceAndPath (MOD_ID , "lectern_inventory_request" );
16+ public static final Identifier SHELF_INVENTORY_REQUEST_PACKET_ID = Identifier .fromNamespaceAndPath (MOD_ID ,"shelf_inventory_request" );
1717}
0 commit comments