Implement Lingering potion & Area Effect Cloud (#5276)

Co-authored-by: Dylan T. <dktapps@pmmp.io>
This commit is contained in:
IvanCraft623
2025-09-26 19:23:45 -06:00
committed by GitHub
parent 7aaf94cd89
commit 93653a64f3
13 changed files with 773 additions and 155 deletions

View File

@@ -1226,6 +1226,7 @@ final class StringToItemParser extends StringToTParser{
$result->register($prefix("potion"), fn() => Items::POTION()->setType($potionType));
$result->register($prefix("splash_potion"), fn() => Items::SPLASH_POTION()->setType($potionType));
$result->register($prefix("lingering_potion"), fn() => Items::LINGERING_POTION()->setType($potionType));
}
}