From 332c71c9b1e6a518fdea6be6dff1df673899bae6 Mon Sep 17 00:00:00 2001 From: Maide <34639600+Kelebek1@users.noreply.github.com> Date: Sun, 16 Jan 2022 18:20:03 +0000 Subject: [PATCH] Update (#608) --- tools/m2ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/m2ctx.py b/tools/m2ctx.py index c2e50d59fd..0824899f15 100755 --- a/tools/m2ctx.py +++ b/tools/m2ctx.py @@ -40,7 +40,7 @@ def custom_replacements(output): for x in range(12): actorList.append(actorListText.replace("first;", f"{actorCats[x]};") + "\n") if x == 2: - actorList[x] = actorList[x].replace("Actor*", "Player*") + actorList[x] = actorList[x].replace("Actor*", "struct Player*") elif "ActorListEntry actorLists[ACTORCAT_MAX];" in line: output[i] = "struct {\n" + "".join(actorList) + "};" ########################################################