Get close to matching CScriptAreaAttributes

Former-commit-id: b818531567
This commit is contained in:
Phillip Stephens 2022-10-14 11:06:32 -07:00
parent 713e75c4f1
commit f0261ab3c5
1 changed files with 3 additions and 7 deletions

View File

@ -25,18 +25,14 @@ void CScriptAreaAttributes::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId
switch (msg) { switch (msg) {
case kSM_InitializedInArea: { case kSM_InitializedInArea: {
TAreaId areaId = x4_areaId; stateMgr.World()->Area(GetAreaIdAlways())->SetAreaAttributes(this);
stateMgr.World()->Area(areaId)->SetAreaAttributes(this);
stateMgr.EnvFxManager()->SetFxDensity(500, x3c_envFxDensity); stateMgr.EnvFxManager()->SetFxDensity(500, x3c_envFxDensity);
break; break;
} }
case kSM_Deleted: { case kSM_Deleted: {
TAreaId areaId = x4_areaId; if (stateMgr.World()->Area(GetAreaIdAlways())->IsLoaded()) {
CGameArea* area = stateMgr.World()->Area(areaId); stateMgr.World()->Area(GetAreaIdAlways())->SetAreaAttributes(nullptr);
if (area->IsLoaded()) {
area->SetAreaAttributes(nullptr);
} }
} }
} }