Update EventCaller.cs
Should fix Alpha build not compiling
This commit is contained in:
parent
04e4b72dbc
commit
14c2abc91c
|
@ -109,6 +109,11 @@ namespace HeavenStudio
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static List<RiqEntity> GetAllInGameManagerList(string gameName)
|
||||||
|
{
|
||||||
|
return instance.gameManager.Beatmap.Entities.FindAll(c => c.datamodel.Split('/')[0] == gameName);
|
||||||
|
}
|
||||||
|
|
||||||
public static List<RiqEntity> GetAllInGameManagerList(string gameName, string[] include)
|
public static List<RiqEntity> GetAllInGameManagerList(string gameName, string[] include)
|
||||||
{
|
{
|
||||||
Predicate<RiqEntity> match = c =>
|
Predicate<RiqEntity> match = c =>
|
||||||
|
@ -134,4 +139,4 @@ namespace HeavenStudio
|
||||||
return instance.minigames.Values.ToList().FindAll(c => c.fxOnly);
|
return instance.minigames.Values.ToList().FindAll(c => c.fxOnly);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue