mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 14:09:06 +00:00
Add Lua function isShuttingDownGameState()
This commit is contained in:
parent
c312572ff7
commit
9377b6edb9
1 changed files with 6 additions and 0 deletions
|
@ -8357,6 +8357,11 @@ luaFunc(isMiniMapCursorOkay)
|
|||
luaReturnBool(dsq->isMiniMapCursorOkay());
|
||||
}
|
||||
|
||||
luaFunc(isShuttingDownGameState)
|
||||
{
|
||||
luaReturnBool(dsq->game->isShuttingDownGameState());
|
||||
}
|
||||
|
||||
luaFunc(inv_isFull)
|
||||
{
|
||||
IngredientData *data = dsq->continuity.getIngredientDataByName(getString(L, 1));
|
||||
|
@ -9526,6 +9531,7 @@ static const struct {
|
|||
luaRegister(getScreenSize),
|
||||
luaRegister(getScreenVirtualSize),
|
||||
luaRegister(isMiniMapCursorOkay),
|
||||
luaRegister(isShuttingDownGameState),
|
||||
|
||||
luaRegister(inv_isFull),
|
||||
luaRegister(inv_getMaxAmount),
|
||||
|
|
Loading…
Reference in a new issue