on_actions = {
	on_weekly = {
		effect = {
			# UNEMPLOYMENT SYSTEM #
			set_temp_variable = { unemployment_value = modifier@weekly_unemployment_change }
			if = {
				limit = {
					NOT = { check_variable = { unemployment_value = 0 } }
					OR = {
						AND = {
							check_variable = { unemployment_value > 0 }
							check_variable = { current_unemployment < 1 }
						}
						AND = {
							check_variable = { unemployment_value < 0 }
							check_variable = { current_unemployment > 0 }
						}
					}
				}
				add_unemployment_effect = yes
			}
			building_bonus_weekly_effect = yes
		}
	}
	on_weekly_AUS = {
		effect = {
			if = {
				limit = {
					NOT = {
						has_variable = civ_total_bonus
					}
					OR = {
						has_variable = AUS_var_wien_urbanisation
						has_variable = AUS_var_bohemian_industrialization
					}
				}
				clear_variable = AUS_var_wien_urbanisation
				clear_variable = AUS_var_bohemian_industrialization
			}
		}
	}
}