Skip to content

Commit f591508

Browse files
Make each program pack use different rng keys
1 parent eebb48e commit f591508

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

items/code.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ local pack1 = {
4848
order = 1,
4949
weight = 0.96,
5050
create_card = function(self, card)
51-
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program")
51+
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program_1")
5252
end,
5353
ease_background_colour = function(self)
5454
ease_colour(G.C.DYN_UI.MAIN, G.C.SET.Code)
@@ -92,7 +92,7 @@ local pack2 = {
9292
order = 2,
9393
weight = 0.96,
9494
create_card = function(self, card)
95-
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program")
95+
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program_2")
9696
end,
9797
ease_background_colour = function(self)
9898
ease_colour(G.C.DYN_UI.MAIN, G.C.SET.Code)
@@ -136,7 +136,7 @@ local packJ = {
136136
order = 3,
137137
weight = 0.48,
138138
create_card = function(self, card)
139-
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program")
139+
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program_j")
140140
end,
141141
ease_background_colour = function(self)
142142
ease_colour(G.C.DYN_UI.MAIN, G.C.SET.Code)
@@ -180,7 +180,7 @@ local packM = {
180180
order = 4,
181181
weight = 0.12,
182182
create_card = function(self, card)
183-
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program")
183+
return create_card("Code", G.pack_cards, nil, nil, true, true, nil, "cry_program_m")
184184
end,
185185
ease_background_colour = function(self)
186186
ease_colour(G.C.DYN_UI.MAIN, G.C.SET.Code)

0 commit comments

Comments
 (0)