more features

This commit is contained in:
matst80
2024-11-14 20:02:34 +01:00
parent 3f6f78c839
commit 1c6c9b1894
5 changed files with 390 additions and 68 deletions

View File

@@ -37,7 +37,7 @@ func spawn(id CartId) (*CartGrain, error) {
ret := &CartGrain{
lastItemId: 0,
lastDeliveryId: 0,
Deliveries: []CartDelivery{},
Deliveries: []*CartDelivery{},
Id: id,
Items: []*CartItem{},
storageMessages: []Message{},