Fixed 9646128d0176240c818dcefa57d39fb46af0de07

This commit is contained in:
Dylan K. Taylor 2021-10-20 21:54:57 +01:00
parent 6d78a0b435
commit aa408c9a97
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
2 changed files with 5 additions and 0 deletions

View File

@ -2075,6 +2075,10 @@ final class KnownTranslationFactory{
return new Translatable(KnownTranslationKeys::POTION_SATURATION, []);
}
public static function potion_slowFalling() : Translatable{
return new Translatable(KnownTranslationKeys::POTION_SLOWFALLING, []);
}
public static function potion_waterBreathing() : Translatable{
return new Translatable(KnownTranslationKeys::POTION_WATERBREATHING, []);
}

View File

@ -430,6 +430,7 @@ final class KnownTranslationKeys{
public const POTION_REGENERATION = "potion.regeneration";
public const POTION_RESISTANCE = "potion.resistance";
public const POTION_SATURATION = "potion.saturation";
public const POTION_SLOWFALLING = "potion.slowFalling";
public const POTION_WATERBREATHING = "potion.waterBreathing";
public const POTION_WEAKNESS = "potion.weakness";
public const POTION_WITHER = "potion.wither";