Skip to content

Commit

Permalink
tweak: list rings after other equip slots
Browse files Browse the repository at this point in the history
  • Loading branch information
kiedtl committed Jun 29, 2024
1 parent 9e37664 commit 7de9975
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/types.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2273,13 +2273,13 @@ pub const Mob = struct { // {{{
Weapon = 1,
Backup = 2,
Aux = 3,
Ring1 = 4,
Ring2 = 5,
Ring3 = 6,
Ring4 = 7,
Ring5 = 8,
Armor = 9,
Cloak = 10,
Armor = 4,
Cloak = 5,
Ring1 = 6,
Ring2 = 7,
Ring3 = 8,
Ring4 = 9,
Ring5 = 10,

pub fn slotFor(item: Item) EquSlot {
return switch (item) {
Expand Down

0 comments on commit 7de9975

Please sign in to comment.