1
0
Fork 0

Fix: DupSprite did not copy the control_flags field (#12906)

Co-authored-by: Jonathan G Rennison <j.g.rennison@gmail.com>
pull/12933/head
Peter Nelson 2024-09-07 14:57:44 +01:00 committed by GitHub
parent 69aa6f66ec
commit 29ff3d7b90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -697,6 +697,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;
}
/**