Fix photocopying removing stamp overlays from the original instead of copying them to the copy (#88764)

## About The Pull Request

Photocopiers were trying to copy the stamp overlays from the new blank
paper onto the original, and cutting the original's old overlays in the
process.
This inverts that statement and removes the cutting part.
## Why It's Good For The Game

Nice if photocopying doesn't remove the stamp overlays on the original
just cause it feels like it.
## Changelog
🆑
fix: Photocopying no longer removes the stamp overlays from the original
paper, and actually copies them to the copy.
/🆑
This commit is contained in:
_0Steven
2024-12-29 09:58:22 +01:00
committed by GitHub
parent 1f3fc45a4b
commit eb4579b862
+1 -1
View File
@@ -162,7 +162,7 @@
new_paper.raw_stamp_data = copy_raw_stamps()
new_paper.stamp_cache = stamp_cache?.Copy()
new_paper.update_icon_state()
copy_overlays(new_paper, TRUE)
new_paper.copy_overlays(src)
return new_paper
/**