Skip to content

Commit

Permalink
Fix disassembler CI never failing on errors (#2100)
Browse files Browse the repository at this point in the history
Co-authored-by: ike709 <[email protected]>
  • Loading branch information
ike709 and ike709 authored Nov 17, 2024
1 parent 897946e commit 6062c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compiler-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Compile /tg/station Master
run: main\bin\DMCompiler\DMCompiler.exe tg\tgstation.dme --suppress-unimplemented
- name: Disassemble /tg/station Master
run: main\bin\DMDisassembler\DMDisassembler.exe tg\tgstation.json crash-on-error
run: main\bin\DMDisassembler\DMDisassembler.exe tg\tgstation.json crash-on-test
- name: Checkout Goonstation Master
uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions OpenDreamRuntime/Procs/ProcDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ public ITuple DecodeInstruction() {
case DreamProcOpcode.CreateTypeEnumerator:
case DreamProcOpcode.DestroyEnumerator:
case DreamProcOpcode.IsTypeDirect:
case DreamProcOpcode.CreateMultidimensionalList:
return (opcode, ReadInt());

case DreamProcOpcode.JumpIfTrueReference:
Expand Down

0 comments on commit 6062c18

Please sign in to comment.