From efa2f10b7321d7985d66dc0a7d8702897ac5d398 Mon Sep 17 00:00:00 2001 From: Shnupbups Date: Sat, 1 Aug 2020 05:35:57 +1000 Subject: [PATCH] a couple things (#1629) * a couple things * move perspective to options package * move processorlist --- .../net/minecraft/client/options/GameOptions.mapping | 1 + .../net/minecraft/client/options/Perspective.mapping | 10 ++++++++++ .../structure/processor/ProcessorList.mapping | 5 +++++ 3 files changed, 16 insertions(+) create mode 100644 mappings/net/minecraft/client/options/Perspective.mapping create mode 100644 mappings/net/minecraft/structure/processor/ProcessorList.mapping diff --git a/mappings/net/minecraft/client/options/GameOptions.mapping b/mappings/net/minecraft/client/options/GameOptions.mapping index 9ac2138f58..cac30248cc 100644 --- a/mappings/net/minecraft/client/options/GameOptions.mapping +++ b/mappings/net/minecraft/client/options/GameOptions.mapping @@ -136,3 +136,4 @@ CLASS net/minecraft/class_315 net/minecraft/client/options/GameOptions ARG 1 fallbackColor METHOD method_19345 getTextBackgroundColor (F)I ARG 1 fallbackOpacity + METHOD method_31044 getPerspective ()Lnet/minecraft/class_5498; diff --git a/mappings/net/minecraft/client/options/Perspective.mapping b/mappings/net/minecraft/client/options/Perspective.mapping new file mode 100644 index 0000000000..da1a83c627 --- /dev/null +++ b/mappings/net/minecraft/client/options/Perspective.mapping @@ -0,0 +1,10 @@ +CLASS net/minecraft/class_5498 net/minecraft/client/options/Perspective + FIELD field_26667 VALUES [Lnet/minecraft/class_5498; + FIELD field_26668 firstPerson Z + FIELD field_26669 frontView Z + METHOD (Ljava/lang/String;IZZ)V + ARG 3 firstPerson + ARG 4 frontView + METHOD method_31034 isFirstPerson ()Z + METHOD method_31035 isFrontView ()Z + METHOD method_31036 next ()Lnet/minecraft/class_5498; diff --git a/mappings/net/minecraft/structure/processor/ProcessorList.mapping b/mappings/net/minecraft/structure/processor/ProcessorList.mapping new file mode 100644 index 0000000000..8b381e89cd --- /dev/null +++ b/mappings/net/minecraft/structure/processor/ProcessorList.mapping @@ -0,0 +1,5 @@ +CLASS net/minecraft/class_5497 net/minecraft/structure/processor/ProcessorList + FIELD field_26662 list Ljava/util/List; + METHOD (Ljava/util/List;)V + ARG 1 list + METHOD method_31027 getList ()Ljava/util/List;