mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 23:58:07 +01:00
Belt contents copypasta fix (#85989)
## About The Pull Request #85945 and #85319
This commit is contained in:
@@ -376,8 +376,11 @@
|
||||
for(var/i in 1 to num_to_load)
|
||||
preload += type_to_load
|
||||
//Load in belt gear and shit
|
||||
for(var/datum/type_to_load in belt_contents)
|
||||
for(var/i in 1 to belt_contents[type_to_load])
|
||||
for(var/type_to_load in belt_contents)
|
||||
var/num_to_load = belt_contents[type_to_load]
|
||||
if(!isnum(num_to_load))
|
||||
num_to_load = 1
|
||||
for(var/i in 1 to num_to_load)
|
||||
preload += type_to_load
|
||||
preload += belt
|
||||
preload += ears
|
||||
|
||||
Reference in New Issue
Block a user