mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-28 15:21:57 +00:00
fix: not reallocating IW5 clipMap pInfo from temp block
This commit is contained in:
@ -327,6 +327,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
|
||||
}
|
||||
|
||||
if (member->m_post_load_action)
|
||||
{
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -378,6 +384,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
|
||||
}
|
||||
|
||||
if (member->m_post_load_action)
|
||||
{
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
|
||||
}
|
||||
}
|
||||
else if (computations.IsAfterPartialLoad())
|
||||
{
|
||||
@ -424,6 +436,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
|
||||
}
|
||||
|
||||
if (member->m_post_load_action)
|
||||
{
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
|
||||
}
|
||||
}
|
||||
else if (computations.IsAfterPartialLoad())
|
||||
{
|
||||
@ -446,6 +464,12 @@ class ZoneLoadTemplate::Internal final : BaseTemplate
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_type->m_post_load_action.get()))
|
||||
}
|
||||
|
||||
if (member->m_post_load_action)
|
||||
{
|
||||
LINE("")
|
||||
LINE(MakeCustomActionCall(member->m_post_load_action.get()))
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user