e
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "byond",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch DreamSeeker",
|
||||||
|
"preLaunchTask": "Build All",
|
||||||
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+15
-3
@@ -6,8 +6,11 @@
|
|||||||
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib",
|
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib",
|
||||||
"typescript.enablePromptUseWorkspaceTsdk": true,
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
||||||
"search.exclude": {
|
"search.exclude": {
|
||||||
"tgui/.yarn": true,
|
"**/.yarn": true,
|
||||||
"tgui/.pnp.*": true
|
"**/.pnp.*": true
|
||||||
|
},
|
||||||
|
"editor.codeActionsOnSave": {
|
||||||
|
"source.fixAll.eslint": true
|
||||||
},
|
},
|
||||||
"workbench.editorAssociations": [
|
"workbench.editorAssociations": [
|
||||||
{
|
{
|
||||||
@@ -17,5 +20,14 @@
|
|||||||
],
|
],
|
||||||
"files.eol": "\n",
|
"files.eol": "\n",
|
||||||
"gitlens.advanced.blame.customArguments": ["-w"],
|
"gitlens.advanced.blame.customArguments": ["-w"],
|
||||||
"tgstationTestExplorer.project.resultsType": "json"
|
"tgstationTestExplorer.project.resultsType": "json",
|
||||||
|
"[javascript]": {
|
||||||
|
"editor.rulers": [80]
|
||||||
|
},
|
||||||
|
"[typescript]": {
|
||||||
|
"editor.rulers": [80]
|
||||||
|
},
|
||||||
|
"[scss]": {
|
||||||
|
"editor.rulers": [80]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Vendored
+55
@@ -0,0 +1,55 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"command": "tools/build/build",
|
||||||
|
"windows": {
|
||||||
|
"command": ".\\tools\\build\\build.bat"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"DM_EXE": "${config:dreammaker.byondPath}"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$dreammaker",
|
||||||
|
"$tsc",
|
||||||
|
"$eslint-stylish"
|
||||||
|
],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"dependsOn": "dm: reparse",
|
||||||
|
"label": "Build All"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dreammaker",
|
||||||
|
"dme": "tgstation.dme",
|
||||||
|
"problemMatcher": [
|
||||||
|
"$dreammaker"
|
||||||
|
],
|
||||||
|
"group": "build",
|
||||||
|
"label": "dm: build - tgstation.dme"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"command": "tgui/bin/tgui",
|
||||||
|
"windows": {
|
||||||
|
"command": ".\\tgui\\bin\\tgui.bat"
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$tsc",
|
||||||
|
"$eslint-stylish"
|
||||||
|
],
|
||||||
|
"group": "build",
|
||||||
|
"label": "tgui: build"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "${command:dreammaker.reparse}",
|
||||||
|
"group": "build",
|
||||||
|
"label": "dm: reparse"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -309,6 +309,10 @@
|
|||||||
|
|
||||||
/obj/structure/foamedmetal/resin/Initialize()
|
/obj/structure/foamedmetal/resin/Initialize()
|
||||||
. = ..()
|
. = ..()
|
||||||
|
neutralize_air()
|
||||||
|
addtimer(CALLBACK(src, .proc/neuralize_air), 5) // yeah this sucks, maybe when auxmos is out
|
||||||
|
|
||||||
|
/obj/structure/foamedmetal/resin/proc/neutralize_air()
|
||||||
if(isopenturf(loc))
|
if(isopenturf(loc))
|
||||||
var/turf/open/O = loc
|
var/turf/open/O = loc
|
||||||
O.ClearWet()
|
O.ClearWet()
|
||||||
|
|||||||
Reference in New Issue
Block a user