User Tools

Site Tools


tutorial:items

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
tutorial:items [2020/11/02 06:36] – [Adding Item textures] item/generated -> builtin/generated leocth2tutorial:items [2020/11/02 07:17] – [Creating an Item class] use static factory methods of TypeActionResult leocth2
Line 84: Line 84:
     public TypedActionResult<ItemStack> use(World world, PlayerEntity playerEntity, Hand hand) {     public TypedActionResult<ItemStack> use(World world, PlayerEntity playerEntity, Hand hand) {
         playerEntity.playSound(SoundEvents.BLOCK_WOOL_BREAK, 1.0F, 1.0F);         playerEntity.playSound(SoundEvents.BLOCK_WOOL_BREAK, 1.0F, 1.0F);
-        return new TypedActionResult<>(ActionResult.SUCCESS, playerEntity.getStackInHand(hand));+        return TypedActionResult.success(playerEntity.getStackInHand(hand));
     }     }
 } }
tutorial/items.txt · Last modified: 2024/04/20 08:05 by ryhon