Skip to content

Commit 4bb1ac7

Browse files
committed
remove Default: from all macros
1 parent ab15158 commit 4bb1ac7

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

Client/scripts/__WarpConfig/__WarpConfig.gml

+9-8
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ SOCKET_TYPES = {
4141
// Choose configs in GameMaker in the top-right corner
4242

4343
// Default (just mirrors debug)
44-
#macro Default:IP "127.0.0.1"
45-
#macro Default:PORT "1338"
46-
#macro Default:WS_PORT "3001"
47-
#macro Default:DUAL_INSTANCE true
44+
#macro IP "127.0.0.1"
45+
#macro PORT "1338"
46+
#macro WS_PORT "3001"
47+
#macro DUAL_INSTANCE true
4848
// you can set this macro to >1 to test the game with 3+ instances running at once
49-
#macro Default:DUAL_INSTANCE_COUNT 1
49+
#macro DUAL_INSTANCE_COUNT 1
5050

5151
// Production
5252
#macro Prod:IP "xxx.xxx.xxx.xxx" // insert your external server IP
@@ -67,11 +67,12 @@ SOCKET_TYPES = {
6767

6868

6969
// warn about not setting the config (press the "target" icon in the top-right corner of IDE)
70-
#macro CONFIGS_SET true
71-
#macro Default:CONFIGS_SET false
70+
#macro CONFIGS_SET false
71+
#macro Dev:CONFIGS_SET true
72+
#macro Prod:CONFIGS_SET true
7273
if (!CONFIGS_SET) {
7374
trace("")
74-
trace("### Remember to set your config by pressing the 'target' icon in the top-right corner of IDE! (Dev = Development, Prod = Production) ###")
75+
trace("!!! Please remember to set your config by pressing the 'target' icon in the top-right corner of IDE! (Dev = Development, Prod = Production) ###")
7576
trace("")
7677
}
7778

0 commit comments

Comments
 (0)