mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
support merge/split events
This commit is contained in:
parent
f8dff15fe0
commit
6dd34ebda4
12 changed files with 234 additions and 60 deletions
|
|
@ -158,6 +158,6 @@ public unsafe struct GameInventoryItem : IEquatable<GameInventoryItem>
|
|||
/// <inheritdoc cref="object.ToString"/>
|
||||
public override string ToString() =>
|
||||
this.IsEmpty
|
||||
? "no item"
|
||||
: $"item #{this.ItemId} at slot {this.InventorySlot} in {this.ContainerType}";
|
||||
? "empty"
|
||||
: $"item({this.ItemId}@{this.ContainerType}#{this.InventorySlot})";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue