Remove bomb pile item

This commit is contained in:
InfRandomness 2022-01-19 19:31:43 +00:00 committed by Imbris
parent 59d195b9bc
commit dabae7ece8
3 changed files with 3 additions and 10 deletions

View File

@ -72,6 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
- Removed unused PNG files
- Removed bomb_pile
### Fixed

View File

@ -1,10 +0,0 @@
ItemDef(
name: "Bomb",
description: "Boom!",
kind: Throwable(
kind: Bomb,
amount: 10,
),
quality: Common,
tags: [Utility],
)

View File

@ -0,0 +1,2 @@
UPDATE item
SET item_definition_id = 'common.items.utility.bomb' WHERE item_definition_id = 'common.items.utility.bomb_pile';