targetted_decisions = {
	
	toggle_manual_education = {
		ai = no
		filter = realm_including_me
		
		from_potential = {
			always = yes
		}
		potential = {
			NOT = { age = 16 }
		}
		allow = {
			NOT = { age = 16 }
		}
		
		effect = {
			if = {
				limit = {
					has_character_modifier = manual_education
				}
				remove_character_modifier = manual_education
			}
			else = {
				add_character_modifier = { 
						modifier = manual_education
						duration = -1 
				}
			}
		}
	}
	toggle_manual_guardian = {
		ai = no
		filter = realm_including_me
		from_potential = {
			always = yes
		}
		potential = {
			always = yes
		}
		allow = {
			always = yes
		}
		effect = {
			if = {
				limit = {
					has_character_modifier = manual_guardian
				}
				remove_character_modifier = manual_guardian
			}
			else = {
				add_character_modifier = { 
						modifier = manual_guardian
						duration = -1 
				}
			}
		}
	}
	toggle_manual_children = {
		ai = no
		filter = realm_including_me
		from_potential = {
			always = yes
		}
		potential = {
			always = yes
		}
		allow = {
			always = yes
		}
		effect = {
			if = {
				limit = {
					has_character_modifier = manual_children
				}
				remove_character_modifier = manual_children
			}
			else = {
				add_character_modifier = { 
						modifier = manual_children
						duration = -1 
				}
			}
		}
	}
}