engine: resources: print: Add missing Recvable trait

We we're receiving values, but we forgot to list the trait. This caused
an intentional engine panic, but is easily fixed :)
This commit is contained in:
James Shubin
2018-05-22 19:32:40 -04:00
parent a402f50f9b
commit a049af6262

View File

@@ -34,6 +34,7 @@ func init() {
type PrintRes struct {
traits.Base // add the base methods without re-implementation
traits.Groupable
traits.Recvable
traits.Refreshable
init *engine.Init