diff --git a/assets/xml/objects/object_icicle.xml b/assets/xml/objects/object_icicle.xml index ac00004713..d3275aa465 100644 --- a/assets/xml/objects/object_icicle.xml +++ b/assets/xml/objects/object_icicle.xml @@ -1,7 +1,8 @@  + - - - + + + diff --git a/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c b/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c index a8eea26411..df6245c68c 100644 --- a/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c +++ b/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c @@ -69,7 +69,7 @@ void BgIcicle_Init(Actor* thisx, PlayState* play) { Actor_ProcessInitChain(thisx, sInitChain); DynaPolyActor_Init(&this->dyna, 0); - DynaPolyActor_LoadMesh(play, &this->dyna, &object_icicle_Colheader_000294); + DynaPolyActor_LoadMesh(play, &this->dyna, &gIcicleCol); Collider_InitAndSetCylinder(play, &this->collider, thisx, &sCylinderInit); Collider_UpdateCylinder(thisx, &this->collider); @@ -242,5 +242,5 @@ void BgIcicle_Update(Actor* thisx, PlayState* play) { } void BgIcicle_Draw(Actor* thisx, PlayState* play) { - Gfx_DrawDListOpa(play, object_icicle_DL_0000D0); + Gfx_DrawDListOpa(play, gIcicleDL); }