mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Merge branch 'infrandomness/remove_utility/bomb_pile' into 'master'
Remove bomb pile item Closes #1184 See merge request veloren/veloren!3114
This commit is contained in:
commit
907b1576ca
@ -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
|
||||
|
||||
|
@ -1,10 +0,0 @@
|
||||
ItemDef(
|
||||
name: "Bomb",
|
||||
description: "Boom!",
|
||||
kind: Throwable(
|
||||
kind: Bomb,
|
||||
amount: 10,
|
||||
),
|
||||
quality: Common,
|
||||
tags: [Utility],
|
||||
)
|
2
server/src/migrations/V48__remove_bomb_pile.sql
Normal file
2
server/src/migrations/V48__remove_bomb_pile.sql
Normal file
@ -0,0 +1,2 @@
|
||||
UPDATE item
|
||||
SET item_definition_id = 'common.items.utility.bomb' WHERE item_definition_id = 'common.items.utility.bomb_pile';
|
Loading…
Reference in New Issue
Block a user