src/Weapon.cc
changeset 223 2fcaf54ed37b
parent 221 fbc5db6fce45
child 236 0048ba274152
--- a/src/Weapon.cc	Sat Dec 06 17:51:19 2008 +0000
+++ b/src/Weapon.cc	Sat Dec 06 18:49:51 2008 +0000
@@ -31,10 +31,8 @@
     return (reloadTimer == 0);
 }
 
-Projectile* Weapon::shoot (Vector position, Vector velocity) {
+void Weapon::reload (void) {
     // set the reload timer
     reloadTimer = reloadTime;
-
-    return new Projectile(st, position, velocity, true, explosionRadius);
 }