mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-26 08:48:34 +01:00
replace charsetlib with charset
This commit is contained in:
parent
2e5d7e6b49
commit
e153fc872e
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public final class IMCHandler{
|
||||||
|
|
||||||
public static void doBlockIMC(Block block){
|
public static void doBlockIMC(Block block){
|
||||||
boolean allow = !ArrayUtils.contains(NO_CARRYING, block.getClass());
|
boolean allow = !ArrayUtils.contains(NO_CARRYING, block.getClass());
|
||||||
FMLInterModComms.sendMessage("charsetlib", (allow ? "add" : "remove")+"Carry", block.getRegistryName());
|
FMLInterModComms.sendMessage("charset", (allow ? "add" : "remove")+"Carry", block.getRegistryName());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void doItemIMC(Item item){
|
public static void doItemIMC(Item item){
|
||||||
|
|
Loading…
Reference in a new issue