This is important for some things like XS Menu for example which uses a module for setting up it's menu list (directly declaring a Scene name inside the module). Because of this behavior, all custom scenes that you will call via XS menu must be above it else it will return an error because it will try to find the scene inside the module. It's actually because of this script that I remembered that modules seem to work that way.
Code:
I'm not sure of any other script out there that is afflicted with that problem but I think it's for the benefit of everyone to remember this behavior of modules.#this returns an error when the custom scene script was below xailmodule somemoduleMENU_BLAH = [BLAH,Scene_Custom_Scene]end#But it now works when the Custom Scene script was placed above XAIL