diff options
Diffstat (limited to 'source/Items/ItemBow.h')
-rw-r--r-- | source/Items/ItemBow.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Items/ItemBow.h b/source/Items/ItemBow.h index 7bce127b1..1c936ef81 100644 --- a/source/Items/ItemBow.h +++ b/source/Items/ItemBow.h @@ -36,6 +36,7 @@ public: { return false; } + a_Player->StartChargingBow(); return true; } @@ -71,6 +72,7 @@ public: return; } a_Player->GetWorld()->BroadcastSpawnEntity(*Arrow); + a_Player->GetWorld()->BroadcastSoundEffect("random.bow", (int)a_Player->GetPosX() * 8, (int)a_Player->GetPosY() * 8, (int)a_Player->GetPosZ() * 8, 0.5, (float)(0.75 + ((float)((Arrow->GetUniqueID() * 23) % 32)) / 64)); if (!a_Player->IsGameModeCreative()) { |