activateIfInactive method

Goal activateIfInactive()

Ensures the goal is activated if it is inactive.

Implementation

Goal activateIfInactive() {
	if ( inactive == true ) {
		status = GoalStatus.active;
		activate();
	}

	return this;
}