-
Bug
-
Resolution: Cannot Reproduce
-
None
-
1.20.4, 24w12a, 24w13a, 1.20.5, 1.20.6 Release Candidate 1, 1.20.6, 24w19b, 1.21
-
Confirmed
-
Entities, Loot tables
The sticks and planks dropped from a boat breaking is not controlled by a loot table, but instead is hardcoded. This issue was created due to the recent fix for MC-267866.
Steps to Reproduce:
Since this bug report is about functionality that is missing, the only way to verify this issue is to look into the various loot tables in the game either by decompressing the game jar, or looking in the code of the game.
Code analysis:
protected void checkFallDamage(double p_38307_, boolean p_38308_, BlockState p_38309_, BlockPos p_38310_) { . . . this.causeFallDamage(this.fallDistance, 1.0F, this.damageSources().fall()); if (!this.level().isClientSide && !this.isRemoved()) { this.kill(); if (this.level().getGameRules().getBoolean(GameRules.RULE_DOENTITYDROPS)) { -> ISSUE START for(int i = 0; i < 3; ++i) { this.spawnAtLocation(this.getVariant().getPlanks()); } for(int j = 0; j < 2; ++j) { this.spawnAtLocation(Items.STICK); } -> ISSUE END } } } this.resetFallDistance(); } . . . }
Suggested Fix
Introduce a loot table for sticks and planks dropped from boats.
Notes:
Related to MC-94610 MC-149589 MC-269838 MC-269839 MC-269873 MC-269874 MC-269875
- relates to
-
MC-267866 Panda slimeball drop is hardcoded
- Resolved
-
MC-269035 Missing loot tables for shearing sheep, mooshrooms, and snow golems
- Resolved
-
MC-269873 Egg laying drop from chickens is hardcoded
- Resolved
-
MC-273941 Scute drop from turtles appears to be hardcoded
- Resolved
-
MC-273942 Scute drop from armadillos appears to be hardcoded
- Resolved
-
MC-273943 Sweet berries drop from harvested bushes is hardcoded
- Resolved
-
MC-273944 Items removed from flower pots may be hardcoded
- Resolved
-
MC-149589 The wither boss will always drops a nether star regardless of its DeathLootTable data
- Open
-
MC-269838 Pumpkin seeds drop from sheared pumpkins is hardcoded
- Open
-
MC-269839 Honeycomb drop from sheared bee nests and beehives is hardcoded
- Open
-
MC-276634 Item dropped when using bone meal on sunflowers, peonies, lilacs or rose bushes appears to be hardcoded
- Open
-
MC-94610 Missing loot table entries for mob heads from charged creepers
- Reopened
-
MC-269875 Carved pumpkin drop from shearing a snow golem is hard coded
- Resolved