diff options
Diffstat (limited to 'client/map/items')
-rw-r--r-- | client/map/items/plate_items.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/map/items/plate_items.gd b/client/map/items/plate_items.gd index c1f4df37..33b128ba 100644 --- a/client/map/items/plate_items.gd +++ b/client/map/items/plate_items.gd @@ -42,6 +42,11 @@ class BreadSliceSteakP extends BreadSliceP: steak.position.y = .05 base.add_child(steak) +class CurryP extends PlateFill: + func _init(owned_by_: Node3D): + super(owned_by_) + set_color(Color(.75, .45, .1)) + class DirtyP extends Plate: func _init(owned_by_: Node3D): super(owned_by_) |