add the ability to make props non-droppable

This commit is contained in:
Evan Carroll 2026-01-13 17:46:56 -06:00
parent ea3b444d71
commit 845d64c981
5 changed files with 82 additions and 14 deletions

View file

@ -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>>,