From 7db2a97cea468577e55f31d2d025fef66da2c12f Mon Sep 17 00:00:00 2001 From: Reppan <72985260+Jepvid@users.noreply.github.com> Date: Sat, 3 Jan 2026 15:18:11 +0100 Subject: modding: alt equipment (#6062) Implements object_custom_equip objects that adds more support to have items modified by modders without having to export with hands or do xml edits to load hands. This is autonomous if exported as a object_custom_equip Also adds non existing DisplayList for items that originally did not have a DisplayList. Longshot and Big Goron Sword Sheath is 2 examples --- soh/src/code/z_player_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'soh/src/code') diff --git a/soh/src/code/z_player_lib.c b/soh/src/code/z_player_lib.c index 49d9380bf..0502559f0 100644 --- a/soh/src/code/z_player_lib.c +++ b/soh/src/code/z_player_lib.c @@ -650,6 +650,7 @@ void Player_SetModels(Player* this, s32 modelGroup) { this->waistDLists = &sPlayerDListGroups[gPlayerModelTypes[modelGroup][4]][gSaveContext.linkAge]; Player_SetModelsForHoldingShield(this); + GameInteractor_ExecuteOnPlayerSetModels(this, modelGroup); } void Player_SetModelGroup(Player* this, s32 modelGroup) { @@ -1481,7 +1482,6 @@ s32 Player_OverrideLimbDrawGameplayFirstPerson(PlayState* play, s32 limbIndex, G *dList = NULL; } } - return false; } -- cgit v1.2.3