Skip to content

Commit

Permalink
Fix EnteringKillerCollision.cs (#228)
Browse files Browse the repository at this point in the history
Misaka-ZeroTwo authored Nov 27, 2024
1 parent ed8a22e commit ffaf2ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ private static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstructi

Label ret = generator.DefineLabel();

int index = newInstructions.FindLastIndex(instruction => instruction.opcode == OpCodes.Ldloc_0);
int index = newInstructions.FindLastIndex(instruction => instruction.opcode == OpCodes.Ldarg_0);

newInstructions.InsertRange(
index,

0 comments on commit ffaf2ed

Please sign in to comment.