diff options
| author | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-13 18:17:27 -0400 |
|---|---|---|
| committer | Alexander Pickering <Alexander.Pickering@anondomain.site90.net> | 2016-03-13 18:17:27 -0400 |
| commit | 65016498e2ca0e87ad0617ecdfa0a2dce2cd1404 (patch) | |
| tree | 1f816d39717b6162826025acbe52ece8d8148882 /gamemode/itemsystem/items/bow.lua | |
| parent | 9d4ff294129545d7266f03cd51135d43e1c47967 (diff) | |
| download | wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.tar.gz wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.tar.bz2 wintersurvival2-65016498e2ca0e87ad0617ecdfa0a2dce2cd1404.zip | |
Removed most of the print messages spamming console
Diffstat (limited to 'gamemode/itemsystem/items/bow.lua')
| -rw-r--r-- | gamemode/itemsystem/items/bow.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gamemode/itemsystem/items/bow.lua b/gamemode/itemsystem/items/bow.lua index 3292ef6..4a7f203 100644 --- a/gamemode/itemsystem/items/bow.lua +++ b/gamemode/itemsystem/items/bow.lua @@ -43,11 +43,11 @@ ITEM.CD = 1 local arrow = {}
arrow["model"] = "models/mixerman3d/other/arrow.mdl"
-arrow["speed"] = 13000
+arrow["speed"] = 1300
arrow["drop"] = 50
arrow["init"] = function(fb) end
arrow["onhit"] = function (self,data,phys)
- print("Arrow hit ")
+ --print("Arrow hit ")
PrintTable(data.HitEntity)
if(data.Entity and data.Entity.TakeDamage) then
data.HitEntity:TakeDamage(25)
|
