(Splash)Potion: do not assume that META == potion ID

it probably will be, but meta might not be accessible anymore soon.
This commit is contained in:
Dylan K. Taylor
2020-06-20 09:31:06 +01:00
parent d62d0762ff
commit 62e7b0e2b1
3 changed files with 20 additions and 4 deletions

View File

@@ -252,8 +252,8 @@ class ItemFactory{
}
foreach(Potion::ALL as $type){
$this->register(new Potion(ItemIds::POTION, $type, "Potion"));
$this->register(new SplashPotion(ItemIds::SPLASH_POTION, $type, "Splash Potion"));
$this->register(new Potion(ItemIds::POTION, $type, "Potion", $type));
$this->register(new SplashPotion(ItemIds::SPLASH_POTION, $type, "Splash Potion", $type));
}
foreach(TreeType::getAll() as $type){