diff options
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/base/star.cc | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/game/base/star.cc b/src/game/base/star.cc index ecf403e..b68b202 100644 --- a/src/game/base/star.cc +++ b/src/game/base/star.cc @@ -12,7 +12,8 @@ namespace game {  Star::Star() : core::EntityGlobe(core::Entity::Static | core::Entity::Solid | core::Entity::Bright)  { -	entity_color = math::Color(1,1,1,1);	// white +	entity_color.assign(1,1,1,1); +	entity_color_second.assign(1,1,1,1);  	entity_radius = 96;			// 96 game units  	entity_moduletypeid = star_enttype; | 
