Skip to content

Commit

Permalink
Request denied fix (#6675)
Browse files Browse the repository at this point in the history
# About the pull request

Request denied on asrs console working

# Explain why it's good for the game
typo bad
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
fix: Denied request on req is working again
/:cl:
  • Loading branch information
kiVts authored Jul 13, 2024
1 parent cffeff9 commit 23d4016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/supplyshuttle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new())
else if (href_list["rreq"])
var/ordernum = text2num(href_list["rreq"])
temp = "Invalid Request.<BR>"
for(var/i=1, length(i<=GLOB.supply_controller.requestlist), i++)
for(var/i=1, i<=length(GLOB.supply_controller.requestlist), i++)
var/datum/supply_order/SO = GLOB.supply_controller.requestlist[i]
if(SO.ordernum == ordernum)
GLOB.supply_controller.requestlist.Cut(i,i+1)
Expand Down

0 comments on commit 23d4016

Please sign in to comment.