Skip to content

Commit

Permalink
Fix coffin creatables (#5991)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Aug 21, 2024
1 parent e59dfb7 commit 10ed978
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/lib/data/creatables/shadesOfMorton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ export const shadesOfMortonCreatables: Createable[] = [
name: 'Steel coffin',
inputItems: new Bank({
'Steel locks': 1,
'Bronze coffin': 1
'Broken coffin': 1
}),
outputItems: new Bank({ 'Steel coffin': 1 })
},
{
name: 'Black coffin',
inputItems: new Bank({
'Black locks': 1,
'Steel coffin': 1
'Broken coffin': 1
}),
outputItems: new Bank({ 'Black coffin': 1 })
},
{
name: 'Silver coffin',
inputItems: new Bank({
'Silver locks': 1,
'Black coffin': 1
'Broken coffin': 1
}),
outputItems: new Bank({ 'Silver coffin': 1 })
},
{
name: 'Gold coffin',
inputItems: new Bank({
'Gold locks': 1,
'Silver coffin': 1
'Broken coffin': 1
}),
outputItems: new Bank({ 'Gold coffin': 1 })
}
Expand Down
8 changes: 4 additions & 4 deletions tests/unit/snapshots/banksnapshots.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22917,7 +22917,7 @@ exports[`OSB Creatables 1`] = `
"inputItems": Bank {
"bank": {
"25445": 1,
"25459": 1,
"25457": 1,
},
"frozen": false,
},
Expand All @@ -22934,7 +22934,7 @@ exports[`OSB Creatables 1`] = `
"inputItems": Bank {
"bank": {
"25448": 1,
"25461": 1,
"25457": 1,
},
"frozen": false,
},
Expand All @@ -22951,7 +22951,7 @@ exports[`OSB Creatables 1`] = `
"inputItems": Bank {
"bank": {
"25451": 1,
"25463": 1,
"25457": 1,
},
"frozen": false,
},
Expand All @@ -22968,7 +22968,7 @@ exports[`OSB Creatables 1`] = `
"inputItems": Bank {
"bank": {
"25454": 1,
"25465": 1,
"25457": 1,
},
"frozen": false,
},
Expand Down

0 comments on commit 10ed978

Please sign in to comment.