diff options
author | Mat <mail@mathias.is> | 2020-03-22 13:43:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 13:43:12 +0100 |
commit | 581c1e503431bc9937a1929ce3253e20bd656c56 (patch) | |
tree | a64970f08b791aed364907518e3bc3b78458eee7 | |
parent | Don't enchant an already enchanted book (diff) | |
download | cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar.gz cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar.bz2 cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar.lz cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar.xz cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.tar.zst cuberite-581c1e503431bc9937a1929ce3253e20bd656c56.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemFishingRod.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemFishingRod.h b/src/Items/ItemFishingRod.h index a965ebc87..ecd04bcfd 100644 --- a/src/Items/ItemFishingRod.h +++ b/src/Items/ItemFishingRod.h @@ -206,7 +206,7 @@ public: } else if (FishType <= 12) // Pufferfish has a 13% chance of spawning { - Drops.Add(cItem(E_ITEM_RAW_FISH, 1, E_META_RAW_FISH_CLOWNFISH)); + Drops.Add(cItem(E_ITEM_RAW_FISH, 1, E_META_RAW_FISH_PUFFERFISH)); } else if (FishType <= 24) // Raw salmon has a 25% chance of spawning { |