forked from darkevilmac/pomf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add field / arg mappings for various things. Also map some some thing… (
FabricMC#393) * Add field / arg mappings for various things. Also map some some things on `aud` -> `LecternContainer`. * Add mapping for BlockEntityType.Builder#a -> BlockEntityType.Builder#build * Add mapping for some Inventory parameter names. Also add mappings for CraftingInventory.f() -> CraftingInventory.getHeight() & CraftingInventory.g() -> CraftingInventory.getWidth()
- Loading branch information
1 parent
5c6ba3d
commit 9ecf444
Showing
41 changed files
with
97 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ CLASS atl | |
METHOD b close (Lark;)V | ||
METHOD b transferSlot (Lark;I)Laxd; | ||
ARG 1 player | ||
ARG 2 invSlot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
mappings/net/minecraft/block/entity/BlastFurnaceBlockEntity.mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
CLASS boh net/minecraft/block/entity/BlastFurnaceBlockEntity | ||
METHOD a createContainer (ILarj;)Latf; | ||
METHOD a canPlayerUseInv (Lark;)Z | ||
ARG 1 playerEntity | ||
METHOD a getItemBurnTime (Laxd;)I | ||
METHOD ab_ getCookTime ()I | ||
METHOD g getName ()Ljd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
CLASS bov net/minecraft/block/entity/FurnaceBlockEntity | ||
METHOD a createContainer (ILarj;)Latf; | ||
METHOD a canPlayerUseInv (Lark;)Z | ||
ARG 1 playerEntity | ||
METHOD ab_ getCookTime ()I | ||
METHOD g getName ()Ljd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
CLASS bpg net/minecraft/block/entity/SmokerBlockEntity | ||
METHOD a createContainer (ILarj;)Latf; | ||
METHOD a canPlayerUseInv (Lark;)Z | ||
ARG 1 playerEntity | ||
METHOD a getItemBurnTime (Laxd;)I | ||
METHOD ab_ getCookTime ()I | ||
METHOD g getName ()Ljd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
mappings/net/minecraft/container/AbstractFurnaceContainer.mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
CLASS atg net/minecraft/container/AbstractFurnaceContainer | ||
FIELD a world Lbcf; | ||
FIELD d inventory Lafs; | ||
FIELD e propertyDelegate Lato; | ||
METHOD a canUse (Lark;)Z | ||
METHOD a populateRecipeFinder (Larm;)V | ||
METHOD a isSmeltable (Laxd;)Z | ||
ARG 1 itemStack | ||
METHOD a matches (Lazm;)Z | ||
METHOD b transferSlot (Lark;I)Laxd; | ||
ARG 1 player | ||
ARG 2 invSlot | ||
METHOD b isFuel (Laxd;)Z | ||
ARG 1 itemStack | ||
METHOD e clearCraftingSlots ()V | ||
METHOD f getCraftingResultSlotIndex ()I | ||
METHOD g getCraftingWidth ()I | ||
METHOD h getCraftingHeight ()I | ||
METHOD i getCraftingSlotCount ()I | ||
METHOD l isBurning ()Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
mappings/net/minecraft/container/BlastFurnaceContainer.mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
CLASS atj net/minecraft/container/BlastFurnaceContainer | ||
METHOD a isSmeltable (Laxd;)Z | ||
ARG 1 itemStack | ||
METHOD b isFuel (Laxd;)Z | ||
ARG 1 itemStack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
CLASS atx net/minecraft/container/FurnaceContainer | ||
METHOD a isSmeltable (Laxd;)Z | ||
ARG 1 itemStack | ||
METHOD b isFuel (Laxd;)Z | ||
ARG 1 itemStack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
mappings/aud.mapping → ...ecraft/container/LecternContainer.mapping
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
CLASS aud | ||
CLASS aud net/minecraft/container/LecternContainer | ||
CLASS aud$1 | ||
METHOD d markDirty ()V | ||
FIELD a inventory Lafs; | ||
FIELD d propertyDelegate Lato; | ||
METHOD a setProperty (II)V | ||
ARG 1 pos | ||
ARG 2 propertyId | ||
METHOD a canUse (Lark;)Z | ||
METHOD a onButtonClick (Lark;I)Z | ||
ARG 1 player | ||
ARG 2 id | ||
METHOD e getBookItem ()Laxd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
CLASS aut net/minecraft/container/SmokerContainer | ||
METHOD a isSmeltable (Laxd;)Z | ||
ARG 1 itemStack | ||
METHOD b isFuel (Laxd;)Z | ||
ARG 1 itemStack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.