Skip to content

Commit

Permalink
Merge branch 'ParadiseSS13-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Legendaxe committed Mar 11, 2024
2 parents da31c43 + cbc43a0 commit 194d62c
Show file tree
Hide file tree
Showing 263 changed files with 2,573 additions and 2,350 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,15 +470,15 @@ Look for code examples on how to properly use it.

#### Bitflags

* We prefer using bitshift operators instead of directly typing out the value. I.E:
* Bitshift operators are mandatory, opposed to directly typing out the value. I.E:

```dm
#define MACRO_ONE (1<<0)
#define MACRO_TWO (1<<1)
#define MACRO_THREE (1<<2)
```

Is preferable to:
Is accepted, whereas the following is not:

```dm
#define MACRO_ONE 1
Expand Down
24 changes: 22 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "paracode/linters/check_grep2",
"windows": {
"command": ".\\tools\\bootstrap\\python.bat .\\tools\\ci\\check_grep2.py ${relativeFile}",
},
"problemMatcher": {
"owner": "dm",
"fileLocation": "relative",
"pattern": {
"regexp": "^(.*):(\\d+):\\s+(.*)$",
"file": 1,
"line": 2,
"message": 3,
}
},
"label": "linters: run check_grep2"
},
{
"type": "dreammaker",
"dme": "paradise.dme",
"problemMatcher": [
"$dreammaker"
],
"group": "build",
"label": "dm: build - paradise.dme"
"label": "dm: build - paradise.dme",
"dependsOn": [
"linters: run check_grep2",
]
},
{
"type": "shell",
Expand Down Expand Up @@ -36,6 +57,5 @@
"group": "build",
"label": "tgui: run dev server"
}
,
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@
/obj/effect/turf_decal/tile/yellow{
dir = 4
},
/obj/effect/baseturf_helper/lava_land/surface,
/obj/effect/baseturf_helper/lava/mapping_lava,
/turf/simulated/floor/lubed,
/area/ruin/powered/clownplanet)
"by" = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/turf/template_noop,
/area/template_noop)
"ab" = (
/obj/effect/baseturf_helper/lava_land/surface,
/obj/effect/baseturf_helper/lava/mapping_lava,
/turf/simulated/floor/plating/asteroid/snow/atmosphere,
/area/ruin/powered/snow_biodome)
"ac" = (
Expand Down Expand Up @@ -287,9 +287,9 @@
},
/obj/effect/mapping_helpers/no_lava,
/turf/simulated/floor/pod/dark{
oxygen = 14;
nitrogen = 23;
temperature = 300
oxygen = 8;
nitrogen = 14;
temperature = 500
},
/area/ruin/powered/snow_biodome)
"jE" = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,6 @@
/area/lavaland/surface/outdoors)
"Es" = (
/obj/structure/lattice/catwalk/mining,
/obj/effect/baseturf_helper/lava_land/surface,
/obj/effect/mapping_helpers/no_lava,
/obj/structure/ladder/unusable,
/turf/simulated/floor/chasm,
Expand Down Expand Up @@ -1366,7 +1365,7 @@
/area/ruin/unpowered/althland_excavation)
"Rf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/baseturf_helper/lava_land/surface,
/obj/effect/baseturf_helper/lava/mapping_lava,
/turf/simulated/floor/pod/light{
oxygen = 0;
nitrogen = 0
Expand Down
Loading

0 comments on commit 194d62c

Please sign in to comment.