File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed
Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -148,18 +148,14 @@ internal void Awake()
148148 }
149149 }
150150
151- bool foolsDay = ( DateTime . Now . Month == 4 && DateTime . Now . Day == 1 ) ;
152- bool catDay = ( DateTime . Now . Month == 2 && DateTime . Now . Day == 22 ) ;
153- nyan = foolsDay
154- || Environment . GetCommandLineArgs ( ) . Contains ( "-nyan-nyan" ) ;
155-
156- nCats = catDay
157- || Environment . GetCommandLineArgs ( ) . Contains ( "-ncats" ) ;
158-
151+ {
152+ bool foolsDay = ( DateTime . Now . Month == 4 && DateTime . Now . Day == 1 ) ;
153+ bool catDay = ( DateTime . Now . Month == 2 && DateTime . Now . Day == 22 ) ;
154+ nyan = foolsDay || Environment . GetCommandLineArgs ( ) . Contains ( "-nyan-nyan" ) ;
155+ nCats = catDay || Environment . GetCommandLineArgs ( ) . Contains ( "-ncats" ) ;
156+ }
159157 dumpPostPatch = Environment . GetCommandLineArgs ( ) . Contains ( "-mm-dump" ) ;
160-
161158 DontCopyLogs = Environment . GetCommandLineArgs ( ) . Contains ( "-mm-dont-copy-logs" ) ;
162-
163159 IgnoreCache = Environment . GetCommandLineArgs ( ) . Contains ( "-ignore-cache" ) ;
164160
165161 loadedInScene = true ;
You can’t perform that action at this time.
0 commit comments