From b77152bcdad7e04b3949bf552099eb29d5a12009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=90=E6=B2=90=E5=91=80?= <163636894+zimuya4153@users.noreply.github.com> Date: Mon, 5 Aug 2024 21:53:24 +0800 Subject: [PATCH] feat: fill FertilizerType (#1561) --- src/mc/enums/FertilizerType.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mc/enums/FertilizerType.h b/src/mc/enums/FertilizerType.h index ae80b66431..c576b7d120 100644 --- a/src/mc/enums/FertilizerType.h +++ b/src/mc/enums/FertilizerType.h @@ -2,4 +2,7 @@ #include "mc/_HeaderOutputPredefine.h" -enum class FertilizerType {}; +enum class FertilizerType : uchar { + Bonemeal = 0x0, + Rapid = 0x1, +};