This commit is contained in:
ineed bots 2021-12-19 19:43:07 -06:00
parent 8d3888fdd0
commit 4d0e6da7d3
3 changed files with 18 additions and 2 deletions

9
.gitignore vendored
View File

@ -11,6 +11,15 @@
!/raw !/raw
/raw/* /raw/*
!/raw/scripts !/raw/scripts
/raw/scripts/*
!/raw/scripts/mp
/raw/scripts/mp/*
!/raw/scripts/mp/botwarfare-compiled.gsc
!/raw/scripts/mp/botwarfare.gsc
!/raw/scripts/mp/max_allocation_fix_source-compiled.gsc
!/raw/scripts/mp/max_allocation_fix_source.gsc
!/raw/scripts/mp/spectatorKick-compiled.gsc
!/raw/scripts/mp/spectatorKick.gsc
!/.astylerc !/.astylerc
!/deploy.js !/deploy.js

9
.vscode/tasks.json vendored
View File

@ -7,6 +7,13 @@
"label": "Compile current GSC File", "label": "Compile current GSC File",
"type": "shell", "type": "shell",
"options": { "options": {
"shell": {
"executable": "cmd.exe",
"args": [
"/d",
"/c"
]
},
"cwd": "${fileDirname}" "cwd": "${fileDirname}"
}, },
"command": "${workspaceRoot}/.vscode/Compiler.exe", "command": "${workspaceRoot}/.vscode/Compiler.exe",
@ -14,7 +21,7 @@
"\"${fileBasename}\"" "\"${fileBasename}\""
], ],
"problemMatcher": [], "problemMatcher": [],
"isBackground": true "isBackground": true,
} }
] ]
} }