[#beta-bugs] [modding] in `Worlds.xml`, inside of a `zone` declaration, a self-closing `map` ...

Issue #1546 resolved
Freehold Games Bot Account created an issue

Marked for crossposting by: heladohart

Message (jump):

<heladohart> [modding] in Worlds.xml, inside of a zone declaration, a self-closing map tag will eat builder tags that come after it

e.g., this has music: xml <map FileName="StiltGroundFloor.rpm"></map> <builder Class="Music" Track="Track1" Chance="100" />
but this does not: xml <map FileName="StiltGroundFloor.rpm" /> <builder Class="Music" Track="Track1" Chance="100" />

Comments (3)

  1. Sol

    as i suspected, this is more general. in this example:

    <map FileName="StiltGroundFloor.rpm"></map>
    <builder Class="Music" Track="Track1" Chance="100" />
    <builder Class="SaltDunes" />
    

    the map and the Music load fine, but SaltDunes does not, because Music uses a self-closing tag. it starts working fine if i switch to separate open and close tags

  2. Log in to comment