mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
[MIRROR] Gets rid of = new in object defines (#11075)
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
7872b8bf3c
commit
2653dac7da
@@ -14,12 +14,12 @@
|
||||
See Also:
|
||||
- <scriptError>
|
||||
*/
|
||||
var/list/errors = new
|
||||
var/list/errors = list()
|
||||
/*
|
||||
Var: warnings
|
||||
A list of non-fatal problems in the source code found by the scanner.
|
||||
*/
|
||||
var/list/warnings = new
|
||||
var/list/warnings = list()
|
||||
|
||||
/*
|
||||
Proc: LoadCode
|
||||
@@ -84,7 +84,7 @@
|
||||
Variable: delim
|
||||
A list of characters that denote the start of a new token. This list is automatically populated.
|
||||
*/
|
||||
var/list/delim = new
|
||||
var/list/delim = list()
|
||||
|
||||
/*
|
||||
Macro: COL
|
||||
|
||||
Reference in New Issue
Block a user