Add stamped requisition forms now give bonus credits (#66230)

Requisition forms now grant bonus credits when they are stamped by the appropriate stamp listed under "Authorization Required:" on the form. Initially I was just going to have the req forms give the same amount of credits as the manifest but I was convinced to lower both of them so it doesn't unbalance crate returns too much.
This commit is contained in:
Tim
2022-05-08 11:28:26 -07:00
committed by GitHub
parent 905544daed
commit f021767645
11 changed files with 161 additions and 58 deletions
+5
View File
@@ -95,6 +95,9 @@ SUBSYSTEM_DEF(shuttle)
/// A listing of previously delivered supply packs.
var/list/order_history = list()
/// A listing of previously delivered supply packs by order id
var/list/order_history_by_id = list()
/// A list of job accesses that are able to purchase any shuttles.
var/list/has_purchase_shuttle_access
@@ -634,6 +637,8 @@ SUBSYSTEM_DEF(shuttle)
request_list = SSshuttle.request_list
if (istype(SSshuttle.order_history))
order_history = SSshuttle.order_history
if (istype(SSshuttle.order_history_by_id))
order_history_by_id = SSshuttle.order_history_by_id
if (istype(SSshuttle.shuttle_loan))
shuttle_loan = SSshuttle.shuttle_loan