goron
Greenhorn
I'm maintaining the Solarium Spa mod that adds a custom greenhouse to the game that can be accessed through the Bathhouse Entry (mod page here for reference). The mod changes Linus's schedule so that he visits the Solarium in the fall and winter. However, upon entering the Bathhouse, Linus gets stuck and doesn't go to the Solarium. I'm wondering if there's an issue with how I've set up the map edit that adds a warp to the Bathhouse entry that makes it unusable for Linus (it works fine for the player).
Here is the tmx file code for the bathhouse entry warp:
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="1" height="3" tilewidth="16" tileheight="16" infinite="0" nextlayerid="9" nextobjectid="10">
<tileset firstgid="1" name="townInterior" tilewidth="16" tileheight="16" tilecount="2176" columns="32">
<image source="townInterior.png" trans="000000" width="512" height="1088"/>
</tileset>
<tileset firstgid="2177" name="bathhouse_tiles" tilewidth="16" tileheight="16" tilecount="240" columns="15">
<image source="bathhouse_tiles.png" width="240" height="256"/>
</tileset>
<layer id="2" name="Back" width="1" height="3">
<data encoding="csv">
2264,
2279,
0
</data>
</layer>
<objectgroup id="8" name="Back"/>
<layer id="4" name="Buildings" width="1" height="3">
<data encoding="csv">
1290,
1354,
2294
</data>
</layer>
<objectgroup id="7" name="Buildings" visible="0">
<object id="9" name="TileData" x="0" y="0" width="16" height="48">
<properties>
<property name="Action" value="Warp 5 16 Custom_SolariumSpa"/>
</properties>
</object>
</objectgroup>
<layer id="1" name="Front" width="1" height="3">
<data encoding="csv">
0,
0,
0
</data>
</layer>
<objectgroup id="6" name="Front"/>
</map>
Here is the tmx file code for the bathhouse entry warp:
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="1" height="3" tilewidth="16" tileheight="16" infinite="0" nextlayerid="9" nextobjectid="10">
<tileset firstgid="1" name="townInterior" tilewidth="16" tileheight="16" tilecount="2176" columns="32">
<image source="townInterior.png" trans="000000" width="512" height="1088"/>
</tileset>
<tileset firstgid="2177" name="bathhouse_tiles" tilewidth="16" tileheight="16" tilecount="240" columns="15">
<image source="bathhouse_tiles.png" width="240" height="256"/>
</tileset>
<layer id="2" name="Back" width="1" height="3">
<data encoding="csv">
2264,
2279,
0
</data>
</layer>
<objectgroup id="8" name="Back"/>
<layer id="4" name="Buildings" width="1" height="3">
<data encoding="csv">
1290,
1354,
2294
</data>
</layer>
<objectgroup id="7" name="Buildings" visible="0">
<object id="9" name="TileData" x="0" y="0" width="16" height="48">
<properties>
<property name="Action" value="Warp 5 16 Custom_SolariumSpa"/>
</properties>
</object>
</objectgroup>
<layer id="1" name="Front" width="1" height="3">
<data encoding="csv">
0,
0,
0
</data>
</layer>
<objectgroup id="6" name="Front"/>
</map>