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:
@@ -34,6 +34,7 @@ func init() {
|
|||||||
type PrintRes struct {
|
type PrintRes struct {
|
||||||
traits.Base // add the base methods without re-implementation
|
traits.Base // add the base methods without re-implementation
|
||||||
traits.Groupable
|
traits.Groupable
|
||||||
|
traits.Recvable
|
||||||
traits.Refreshable
|
traits.Refreshable
|
||||||
|
|
||||||
init *engine.Init
|
init *engine.Init
|
||||||
|
|||||||
Reference in New Issue
Block a user