1
0
Fork 0

Fix: DupSprite did not copy the control_flags field

pull/12906/head
Jonathan G Rennison 2023-11-26 01:35:19 +00:00 committed by Peter Nelson
parent 0f0f3d74ca
commit f3b922d220
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
1 changed files with 1 additions and 0 deletions

View File

@ -699,6 +699,7 @@ void DupSprite(SpriteID old_spr, SpriteID new_spr)
scnew->id = scold->id;
scnew->type = scold->type;
scnew->warned = false;
scnew->control_flags = scold->control_flags;
}
/**