2019-07-14, 01:00 PM
Quote:#include <../../gamemodes/modes/mode_robbery.pwn>
#include <../../gamemodes/modes/mode_dogfight.pwn>
These are ^ two includes in the 'gamemodes/modes' folder.
If i arrange them like this:?
Quote:#include <../../gamemodes/modes/mode_dogfight.pwn>
#include <../../gamemodes/modes/mode_robbery.pwn>
the 'mode_dogfight' works (gets included)?and the second one is ignored (it shows undefined symbol errors since the definitions of the functions are in the include)
If i arrange them oppositely then the 'mode_robbery' works, the second one is ignore.
How can i fix this?