add the ability to make props non-droppable
This commit is contained in:
parent
ea3b444d71
commit
845d64c981
5 changed files with 82 additions and 14 deletions
|
|
@ -614,6 +614,7 @@ pub struct InventoryItem {
|
|||
pub layer: Option<AvatarLayer>,
|
||||
pub is_transferable: bool,
|
||||
pub is_portable: bool,
|
||||
pub is_droppable: bool,
|
||||
pub origin: PropOrigin,
|
||||
pub acquired_at: DateTime<Utc>,
|
||||
}
|
||||
|
|
@ -663,6 +664,7 @@ pub struct ServerProp {
|
|||
pub is_unique: bool,
|
||||
pub is_transferable: bool,
|
||||
pub is_portable: bool,
|
||||
pub is_droppable: bool,
|
||||
pub is_active: bool,
|
||||
pub available_from: Option<DateTime<Utc>>,
|
||||
pub available_until: Option<DateTime<Utc>>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue