diff --git a/code/modules/stock_market/computer.dm b/code/modules/stock_market/computer.dm index ced8a43f179..97a2bc983b1 100644 --- a/code/modules/stock_market/computer.dm +++ b/code/modules/stock_market/computer.dm @@ -83,25 +83,6 @@ a.updated { dat += "Prominent products:
" for (var/prod in S.products) dat += "[prod]
" - dat += "
Borrow options:
" - if (S.borrow_brokers.len) - for (var/datum/borrow/B in S.borrow_brokers) - dat += "[B.broker] offers [B.share_amount] shares for borrowing, for a deposit of [B.deposit * 100]% of the shares' value.
" - dat += "The broker expects the return of the shares after [B.lease_time / 600] minutes, with a grace period of [B.grace_time / 600] minute(s).
" - dat += "This offer expires in [(B.offer_expires - world.time) / 600] minutes.
" - dat += "Note: If you do not return all shares by the end of the grace period, you will lose your deposit and the value of all unreturned shares at current value from your account!
" - dat += "Note: You cannot withdraw or transfer money off your account while a borrow is active.
" - dat += "Take offer (Estimated deposit: [B.deposit * S.current_value * B.share_amount] credits)

" - else - dat += "No borrow options available

" - for (var/datum/borrow/B in S.borrows) - if (B.borrower == logged_in) - dat += "You are borrowing [B.share_amount] shares from [B.broker].
" - dat += "Your deposit riding on the deal is [B.deposit] credits.
" - if (world.time < B.lease_expires) - dat += "You are expected to return the borrowed shares in [(B.lease_expires - world.time) / 600] minutes.

" - else - dat += "The brokering agency is collecting. You still owe them [B.share_debt] shares, which you have [(B.grace_expires - world.time) / 600] minutes to present.

" var/news = 0 if (logged_in) var/list/LR = stockExchange.last_read[S]