fix chips?

This commit is contained in:
Sunskimmer822 2022-03-18 15:31:05 -07:00
parent 23c6e1f338
commit 5cbbe228f9

View File

@ -23,10 +23,10 @@ int potatoChipsConsumed = 0;
public TypedActionResult<ItemStack> use(World World, PlayerEntity PlayerEntity, Hand Hand) { public TypedActionResult<ItemStack> use(World World, PlayerEntity PlayerEntity, Hand Hand) {
PlayerEntity.getHungerManager().add(1, 10f); PlayerEntity.getHungerManager().add(1, 10f);
PlayerEntity.getStackInHand(Hand).decrement(1); PlayerEntity.getStackInHand(Hand).decrement(1);
potatoChipsConsumed++; potatoChipsConsumed+=1;
if (potatoChipsConsumed == 69) { if (potatoChipsConsumed == 69) {
PlayerEntity.addStatusEffect(new StatusEffectInstance(StatusEffects.HUNGER, 20 * 15, 4)); PlayerEntity.addStatusEffect(new StatusEffectInstance(StatusEffects.HUNGER, 20 * 15, 4));
potatoChipsConsumed -= 69; potatoChipsConsumed = 0;
PlayerEntity.sendMessage(new LiteralText("I'm really fat/test"), false); PlayerEntity.sendMessage(new LiteralText("I'm really fat/test"), false);
System.out.println("I'm really fat\n/test"); System.out.println("I'm really fat\n/test");
} }