diff options
Diffstat (limited to 'src/game/base/jumppoint.cc')
| -rw-r--r-- | src/game/base/jumppoint.cc | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/base/jumppoint.cc b/src/game/base/jumppoint.cc index 08c7e67..6542b84 100644 --- a/src/game/base/jumppoint.cc +++ b/src/game/base/jumppoint.cc @@ -20,6 +20,7 @@ JumpPoint::JumpPoint() : core::EntityDynamic()  	// FIXME jumppoints should be harder to find  	set_flag(core::Entity::ShowOnMap); +	set_flag(core::Entity::NonSolid);  	get_color().assign(0.0f, 0.8f, 0.8f, 1.0f);  	get_color_second().assign(0.6f, 1.0f); @@ -108,6 +109,7 @@ JumpGate::JumpGate() : JumpPoint()  {  	entity_moduletypeid = jumpgate_enttype;  	unset_flag(core::Entity::Bright); +	unset_flag(core::Entity::NonSolid);  	set_flag(core::Entity::ShowOnMap);  	set_radius(0.0f);  	set_state(core::Entity::NoPower);  | 
