Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LeaveFaultInstruction.cs
Go to the documentation of this file.
2
3internal sealed class LeaveFaultInstruction : Instruction
4{
5 internal static readonly Instruction Instance = new LeaveFaultInstruction();
6
7 public override int ConsumedStack => 2;
8
9 public override int ConsumedContinuations => 1;
10
11 public override string InstructionName => "LeaveFault";
12
14 {
15 }
16
17 public override int Run(InterpretedFrame frame)
18 {
20 return 1;
21 }
22}