use :rifle as default ammo type
continuous-integration/drone/push Build is passing Details

This commit is contained in:
shibao 2023-04-10 20:12:02 -04:00
parent 2b81978adb
commit abaccac9f0
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Fix additional shotgun fields not being exportable
- Fixes duplicate chamber size column for ammo types
- Hide bullet type field when editing/creating shotgun ammo types
- Fix ammo type creation not displaying all the necessary fields on first load
# v0.9.1
- Rename ammo type's "type" to "class" to avoid confusion

View File

@ -52,7 +52,7 @@ defmodule Cannery.Ammo.Type do
field :name, :string
field :desc, :string
field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol]
field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol], default: :rifle
# common fields
field :bullet_core, :string