﻿# For modders and other viewers:
# This file is just for mod detection, so no need to include this file into your mod!

on_game_start = {
	on_actions = {
		on_ire_start
	}
}

on_ire_start = {
	effect = {
		set_global_variable = {
			name = ire_is_loaded
			value = yes
		}

		# Suppress error logs
		if = {
			limit = {
				exists = global_var:ire_is_loaded
			}
			# Do nothing
		}
	}
}
