Warn about Ring Racers maps
This commit is contained in:
parent
76e40adaf8
commit
fce49599d3
2 changed files with 8 additions and 0 deletions
7
extras/differences-from-RingRacers-Mapping.txt
Normal file
7
extras/differences-from-RingRacers-Mapping.txt
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
This document is here to help users when they are trying to convert their own Ring Racers (or at the very least mapped in HVR) maps to BlanKart.
|
||||
|
||||
Although BlanKart and RingRacers are both very similar UDMF based formats there are still some differences.
|
||||
|
||||
ARGS:
|
||||
|
||||
Things and Mapthings read their args from "arg" and "stringarg" instead of "thingarg" and "thingstringarg" like in Ring Racers. Due to this args for scripts are now stored under scriptarg and scriptstringarg instead. BlanKart still supports "thingarg" and "thingstringarg" but scriptargs will still have to be moved unless using the ringracers namespace.
|
||||
|
|
@ -7714,6 +7714,7 @@ static boolean P_SetMapNamespace(void)
|
|||
else if(fastcmp(tkn, "ringracers"))
|
||||
{
|
||||
mapnamespace = MNS_RINGRACERS;
|
||||
CONS_Alert(CONS_WARNING, "Ring Racers Map deteced. BlanKart has basic support for Ring Racers maps but does not fully support them. Consider converting your map to BlanKart format, consult documentation for help.\n");
|
||||
}
|
||||
else if (fastcmp(tkn, "srb2"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue