Increase speed of splash potion and expbottle (#4513)
This commit is contained in:
parent
0b0d6b23d2
commit
076749bd36
@ -40,7 +40,10 @@ public:
|
||||
}
|
||||
|
||||
Vector3d Pos = a_Player->GetThrowStartPos();
|
||||
Vector3d Speed = a_Player->GetLookVector() * 7;
|
||||
Vector3d Speed = a_Player->GetLookVector() * 14;
|
||||
|
||||
// Play sound
|
||||
a_World->BroadcastSoundEffect("entity.arrow.shoot", a_Player->GetPosition() - Vector3d(0, a_Player->GetHeight(), 0), 0.5f, 0.4f / GetRandomProvider().RandReal(0.8f, 1.2f));
|
||||
|
||||
if (a_World->CreateProjectile(Pos.x, Pos.y, Pos.z, cProjectileEntity::pkSplashPotion, a_Player, &a_Player->GetEquippedItem(), &Speed) == cEntity::INVALID_ID)
|
||||
{
|
||||
|
@ -106,7 +106,7 @@ class cItemBottleOEnchantingHandler :
|
||||
typedef cItemThrowableHandler super;
|
||||
public:
|
||||
cItemBottleOEnchantingHandler(void) :
|
||||
super(E_ITEM_BOTTLE_O_ENCHANTING, cProjectileEntity::pkExpBottle, 10)
|
||||
super(E_ITEM_BOTTLE_O_ENCHANTING, cProjectileEntity::pkExpBottle, 14)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user