[MIRROR] [NO GBP] The museum piggy bank now spawns with at least 400 creds in it. (#26850)

* [NO GBP] The museum piggy bank now spawns with at least 400 creds in it. (#81895)

## About The Pull Request
Used the wrong operator in a control statement.

## Why It's Good For The Game
Title.

## Changelog

🆑
fix: The museum piggy bank now spawns with at least 400 creds in it.
/🆑

* [NO GBP] The museum piggy bank now spawns with at least 400 creds in it.

---------

Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
SkyratBot
2024-03-13 19:32:43 -04:00
committed by GitHub
co-authored by Ghom
parent 2b69866992
commit a11b7103a7
+1 -1
View File
@@ -46,7 +46,7 @@
persistence_cb = CALLBACK(src, PROC_REF(save_cash))
SSticker.OnRoundend(persistence_cb)
if(initial_value & initial_value + calculate_dosh_amount() <= maximum_value)
if(initial_value && initial_value + calculate_dosh_amount() <= maximum_value)
new /obj/item/holochip(src, initial_value)
/obj/item/piggy_bank/proc/save_cash()