geforkt von Mirrors/FastAsyncWorldEdit
Feature: add "h" as alias for "hand" and "oh" for "offhand" (#2033)
Dieser Commit ist enthalten in:
Ursprung
f98e526fa0
Commit
c3ce162fd5
@ -408,14 +408,14 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
|
||||
TextComponent.of(blockAndExtraData[0])
|
||||
));
|
||||
}
|
||||
if ("hand".equalsIgnoreCase(typeString)) {
|
||||
if ("hand".equalsIgnoreCase(typeString) || "h".equalsIgnoreCase(typeString)) {
|
||||
// Get the block type from the item in the user's hand.
|
||||
final BaseBlock blockInHand = getBlockInHand(context.requireActor(), HandSide.MAIN_HAND);
|
||||
//FAWE start
|
||||
state = blockInHand.toBlockState();
|
||||
nbt = blockInHand.getNbtData();
|
||||
//FAWE end
|
||||
} else if ("offhand".equalsIgnoreCase(typeString)) {
|
||||
} else if ("offhand".equalsIgnoreCase(typeString) || "oh".equalsIgnoreCase(typeString)) {
|
||||
// Get the block type from the item in the user's off hand.
|
||||
final BaseBlock blockInHand = getBlockInHand(context.requireActor(), HandSide.OFF_HAND);
|
||||
//FAWE start
|
||||
|
@ -106,13 +106,13 @@ public class DefaultItemParser extends InputParser<BaseItem> {
|
||||
nbtString = input.substring(nbtStart);
|
||||
}
|
||||
|
||||
if ("hand".equalsIgnoreCase(typeString)) {
|
||||
if ("hand".equalsIgnoreCase(typeString) || "h".equalsIgnoreCase(typeString)) {
|
||||
BaseItemStack heldItem = getItemInHand(context.requireActor(), HandSide.MAIN_HAND);
|
||||
//FAWE start
|
||||
itemType = heldItem.getType();
|
||||
itemNbtData = heldItem.getNbt();
|
||||
//FAWE end
|
||||
} else if ("offhand".equalsIgnoreCase(typeString)) {
|
||||
} else if ("offhand".equalsIgnoreCase(typeString) || "oh".equalsIgnoreCase(typeString)) {
|
||||
BaseItemStack heldItem = getItemInHand(context.requireActor(), HandSide.OFF_HAND);
|
||||
//FAWE start
|
||||
itemType = heldItem.getType();
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren