diff options
author | Spongecade <spongecade.129@gmail.com> | 2023-09-27 20:07:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 20:07:42 +0200 |
commit | ebeb164d2be6754908a9c562850e585f18f70b88 (patch) | |
tree | f0396dc592063fab48a622049ac43e35a8bc9f66 /src/Items | |
parent | Only enable werror for debug (#5501) (diff) | |
download | cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar.gz cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar.bz2 cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar.lz cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar.xz cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.tar.zst cuberite-ebeb164d2be6754908a9c562850e585f18f70b88.zip |
Diffstat (limited to 'src/Items')
-rw-r--r-- | src/Items/ItemDye.h | 4 | ||||
-rw-r--r-- | src/Items/ItemPotion.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Items/ItemDye.h b/src/Items/ItemDye.h index e6beca084..636a1b477 100644 --- a/src/Items/ItemDye.h +++ b/src/Items/ItemDye.h @@ -88,7 +88,7 @@ public: /** Attempts to use the bonemeal on the plant at the specified (absolute) position. - The effect of fertilization depends on the plant: https://minecraft.gamepedia.com/Bone_Meal#Fertilizer + The effect of fertilization depends on the plant: https://minecraft.wiki/w/Bone_Meal#Fertilizer - grow a few stages - grow 1 stage with a chance - drop pickups without destroying the plant @@ -270,7 +270,7 @@ public: a_World.BroadcastSoundParticleEffect(EffectID::PARTICLE_HAPPY_VILLAGER, a_Position, 0); } - /** Grows a biome-dependent flower according to https://minecraft.gamepedia.com/Flower#Flower_biomes */ + /** Grows a biome-dependent flower according to https://minecraft.wiki/w/Flower#Flower_biomes */ static void GrowFlower(cWorld & a_World, const Vector3i a_Position) { auto & Random = GetRandomProvider(); diff --git a/src/Items/ItemPotion.h b/src/Items/ItemPotion.h index eaf3e0b44..48841652d 100644 --- a/src/Items/ItemPotion.h +++ b/src/Items/ItemPotion.h @@ -21,7 +21,7 @@ public: virtual bool IsDrinkable(short a_ItemDamage) const override { // Drinkable potion if 13th lowest bit is set - // Ref.: https://minecraft.gamepedia.com/Potions#Data_value_table + // Ref.: https://minecraft.wiki/w/Potions#Data_value_table return cEntityEffect::IsPotionDrinkable(a_ItemDamage); } |