Fixing drop/pickup stacking
Deploy Promiscuity Auth API / deploy (push) Successful in 47s
Deploy Promiscuity Character API / deploy (push) Successful in 47s
Deploy Promiscuity Inventory API / deploy (push) Successful in 59s
Deploy Promiscuity Locations API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 9s

This commit is contained in:
2026-03-20 13:18:22 -05:00
parent 525f9442c3
commit c5e692c051
2 changed files with 36 additions and 8 deletions
+1 -2
View File
@@ -678,8 +678,7 @@ func _on_inventory_pickup_pressed() -> void:
_inventory_status_label.text = "Current location is missing an id."
return
var quantity := int(_quantity_spin_box.value)
var to_slot := int(_target_slot_spin_box.value)
_transfer_item_async(_selected_ground_item_id, "location", location_id, "character", _character_id, to_slot, quantity, "Picked up item.")
_transfer_item_async(_selected_ground_item_id, "location", location_id, "character", _character_id, null, quantity, "Picked up item.")
func _on_inventory_refresh_pressed() -> void: