aboutsummaryrefslogtreecommitdiffstats
path: root/src/weapon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/weapon.cpp')
-rw-r--r--src/weapon.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/weapon.cpp b/src/weapon.cpp
index a516fdc..3f5dcec 100644
--- a/src/weapon.cpp
+++ b/src/weapon.cpp
@@ -16,7 +16,7 @@ Weapon::Weapon(float const & rg, unsigned int const & dmg, const char *s, const
reload = LoadSound(r);
SetSoundVolume(shot, 0.3f);
SetSoundVolume(reload, 0.3f);
- max = barrel = 20;
+ max = barrel = 200;
}
Weapon::~Weapon() {}
@@ -31,8 +31,10 @@ int Weapon::bang()
if (barrel == 0)
{
refill();
+ return (1);
} else {
barrel--;
PlaySound(shot);
+ return (0);
}
}