mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user