Fixes map_config validation
This commit is contained in:
committed by
CitadelStationBot
parent
fd2705b6e6
commit
37fdf365a5
@@ -96,8 +96,14 @@
|
|||||||
log_world("Map file ([path]) does not exist!")
|
log_world("Map file ([path]) does not exist!")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
if(json["transition_config"] != "default")
|
if(json["transition_config"] != "default")
|
||||||
if(!islist(json["transition_config"]))
|
if(!islist(json["transition_config"]))
|
||||||
|
=======
|
||||||
|
var/tc = json["transition_config"]
|
||||||
|
if(tc != null && tc != "default")
|
||||||
|
if(!islist(tc))
|
||||||
|
>>>>>>> 9375965... Fixes map_config validation (#32206)
|
||||||
log_world("transition_config is not a list!")
|
log_world("transition_config is not a list!")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user