"Simple UI Player Built Storage"
seems to indirectly modify vanilla stuff in the windows.xml, if i'm not mistaken there is a way to keep this mod from touching vanilla chest.
1. Make sure you have a
REAL text editor, as opposed to merely a word processor. You want something that knows the differences between a CR (Carriage Return) and a LF (Line Feed). I use TextWrangler on my Macs, and Notepad++ on my PC's.
2. Using the text editor, find the block of code in the
MODLET's windows.xml file that has the changes you
DON'T want made to the
VANILLA windows.xml file.
Original "sample code" snippet...
<this line does something you don't want>
<as does this line>
<and this line too>
3. Add comment section start and end tags, like this...
<!--
<this line does something you don't want>
<as does this line>
<and this line too>
-->
4. That section of code no longer runs. Problem solved!
Cheers,
REV6:7-8