Skip to content

Commit 9e90399

Browse files
authored
adds unsupported procs/vars (#135)
fixes #134 --------- Co-authored-by: harryob <[email protected]>
1 parent cd5b5a6 commit 9e90399

File tree

25 files changed

+97
-25
lines changed

25 files changed

+97
-25
lines changed

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: "Add 'CI Approval Required' Label"
36-
if: (github.event.action == 'synchronize' || github.event.action == 'reopened') || ((github.event.action == 'opened' || github.event.action == 'labeled') && !contains(github.event.pull_request.labels.*.name, 'CI Cleared'))
36+
if: (github.event.action == 'opened' || github.event.action == 'labeled' || github.event.action == 'synchronize' || github.event.action == 'reopened') && !contains(github.event.pull_request.labels.*.name, 'CI Cleared')
3737
uses: actions-ecosystem/action-add-labels@18f1af5e3544586314bbe15c0273249c770b2daf
3838
with:
3939
labels: CI Approval Required
@@ -84,4 +84,4 @@ jobs:
8484
umbrella-dir: ./pr-preview/
8585
deploy-repository: ${{ env.DEPLOY_REPO_OWNER }}/${{ env.DEPLOY_REPO }}
8686
custom-url: "ref.opendre.am"
87-
action: deploy
87+
action: deploy

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ We can use shortcodes to render specific HTML within our Markdown files. They're
2424
```
2525

2626
Currently, we have 4 callout shortcodes, which all take a `description` argument:
27-
- never_implemented
27+
- unsupported
2828
- od_only
2929
- parity
3030
- unimplemented

content/language/proc/link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Where the user should be connected to."
99

1010
This is combined with the [<< output](@/language/operators/lessless/output.md) operator to send a link to a client. This will open in the user's browser.
1111

12-
{% never_implemented() %}
12+
{% unsupported() %}
1313
In BYOND, a BYOND server address can be provided. This will disconnect and reconnect the user to the provided world, eg:
1414

1515
```dm
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
+++
22
title = "CheckPassport"
33
slug = "CheckPassport" # AUTOGEN FIELD
4+
[extra]
5+
od_unsupported = true # AUTOGEN FIELD
46
[[extra.args]]
57
name = "passport_identifier" # AUTOGEN STATIC
68
+++

content/objects/client/proc/isbyondmember.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
title = "IsByondMember"
33
slug = "IsByondMember" # AUTOGEN FIELD
44
[extra]
5+
od_unsupported = true # AUTOGEN FIELD
56
+++

content/objects/client/proc/sendpage.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
+++
22
title = "SendPage"
33
slug = "SendPage" # AUTOGEN FIELD
4+
[extra]
5+
od_unsupported = true # AUTOGEN FIELD
46
[[extra.args]]
57
name = "msg" # AUTOGEN STATIC
68
[[extra.args]]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "byond_build"
33
[extra]
4-
default_value = "1633" # AUTOGEN FIELD
4+
default_value = "1655" # AUTOGEN FIELD
55
is_override = false # AUTOGEN FIELD
66
+++
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "byond_version"
33
[extra]
4-
default_value = "515" # AUTOGEN FIELD
4+
default_value = "516" # AUTOGEN FIELD
55
is_override = false # AUTOGEN FIELD
66
+++

content/objects/client/var/gender.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ title = "gender"
33
[extra]
44
default_value = "neuter" # AUTOGEN FIELD
55
is_override = false # AUTOGEN FIELD
6-
type = "text" # AUTOGEN FIELD
6+
type = "text, unsupported" # AUTOGEN FIELD
7+
od_unsupported = true # AUTOGEN FIELD
78
+++

content/objects/world/proc/addcredits.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
+++
22
title = "AddCredits"
33
slug = "AddCredits" # AUTOGEN FIELD
4+
[extra]
5+
od_unsupported = true # AUTOGEN FIELD
46
[[extra.args]]
57
name = "player" # AUTOGEN STATIC
68
[[extra.args]]

0 commit comments

Comments
 (0)