Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug copying target items from one spawn to another #10

Open
Moiras opened this issue Apr 22, 2021 · 0 comments
Open

Bug copying target items from one spawn to another #10

Moiras opened this issue Apr 22, 2021 · 0 comments

Comments

@Moiras
Copy link

Moiras commented Apr 22, 2021

Hi, so after further testing I found two minor bugs, this is one of them (I'll open the other one in a separate thread).

In an spawn entity if I try to copy an item inside "targets" when I paste it into another spawn, DOOM crashes when I reload.
I found that it is caused by the program not pasting the item properly since in the txt file I find:

	targets = {
		num = 3;
		item[0] = "ai_combat_ai_fodder_soldier_shield_4";
		item[1] = {
			item[0] = "ai_combat_ai_heavy_mancubus_goo_1";
		}
		item[2] = "ai_combat_ai_heavy_dreadknight_1";
	}

Editing the text to this seems to solve the issue:

	targets = {
		num = 3;
		item[0] = "ai_combat_ai_fodder_soldier_shield_4";
		item[0] = "ai_combat_ai_heavy_mancubus_goo_1";
		item[2] = "ai_combat_ai_heavy_dreadknight_1";
	}

Normaly the program auto resolves the spawns, but when creating spawns for a spawn group with multiple targets it is sometims necesary to copy a new item into the targets.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant