Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/entityprojectile.cc')
-rw-r--r--src/core/entityprojectile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/entityprojectile.cc b/src/core/entityprojectile.cc
index 0a4e081..108d347 100644
--- a/src/core/entityprojectile.cc
+++ b/src/core/entityprojectile.cc
@@ -19,7 +19,7 @@ EntityProjectile::EntityProjectile(const Entity *spawn) : EntityDynamic()
set_label("projectile");
set_flag(Entity::KeepAlive);
set_shape(Entity::Sphere);
- set_radius(0.01f);
+ set_radius(PROJECTILE_RADIUS);
set_mass(radius());
projectile_damage = 0.0f;
@@ -38,7 +38,7 @@ EntityProjectile::EntityProjectile(std::istream & is) : EntityDynamic(is)
set_label("projectile");
set_flag(Entity::KeepAlive);
set_shape(Entity::Sphere);
- set_radius(0.01f);
+ set_radius(PROJECTILE_RADIUS);
set_mass(radius());
projectile_damage = 0.0f;