Fix Medium Generic Windowed House Style 3 not deploying#412
Merged
AconiteX merged 1 commit intoMay 17, 2026
Merged
Conversation
The shared building template for the Style 3 windowed medium house was missing the appearanceFilename field. The s01 and s02 variants both define this field (pointing to their respective _r0_exterior.apt files), which the structure placement system uses to render the exterior preview when a player attempts to place the building. Without it, the placement HUD silently fails and nothing happens when the deed is used. Added appearanceFilename following the naming convention established by the s03 portal layout file (ply_house_med_s03_hue.pob). Fixes SWG-Source#276
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Medium Generic Windowed House Style 3 deed did nothing when used from the radial menu.
Root cause:
shared_player_house_generic_medium_windowed_s03.tpfwas missing theappearanceFilenamefield. The s01 variant usesappearance/ply_all_house_m_window_s01_hue_r0_exterior.aptand the s02 usesappearance/ply_all_house_m_window_s02_hue_r0_exterior.apt. The structure placement HUD uses this file to render the exterior preview when a player clicks "Use Deed". Without it, placement fails silently.Fix:
Added
appearanceFilenamefollowing the naming convention of the s03 portal layout (ply_house_med_s03_hue.pob→ply_house_med_s03_hue_r0_exterior.apt).Fixes #276