mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
[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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user