Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kiVts committed Jul 10, 2024
1 parent 3f35344 commit 67c7787
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 67c7787

Please sign in to comment.