• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

vJass debug mode doesn't work

Status
Not open for further replies.
Level 13
Joined
Mar 19, 2010
Messages
870
It seems so. I also have code lines like this if DEBUG_MODE... but nothing happens.. is there a way to detect if this flag is true/false?

i have a workaround for it.
Just rename all your "DEBUG_MODE" to "IS_DEBUG_MODE" and create a public variable for it. Easy and works.

vJASS:
scope GameConfig
    
    // PUBLIC GLOBALS
    globals
        constant boolean IS_DEBUG_MODE = true
    endglobals
    
    private module Init
        
        static method onInit takes nothing returns nothing
            ...
        endmethod
    endmodule
    
    private struct GameConfig
        implement Init
    endstruct

endscope
 
Last edited:
Status
Not open for further replies.
Top