Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LeaveExceptionFilterInstruction.cs
Go to the documentation of this file.
2
4
6{
8
9 public override string InstructionName => "LeaveExceptionFilter";
10
11 public override int ConsumedStack => 2;
12
16
17 [ExcludeFromCodeCoverage(Justification = "Known to be a no-op, this instruction is skipped on execution")]
18 public override int Run(InterpretedFrame frame)
19 {
20 return 1;
21 }
22}