File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
gameyamlspiderandgenerator/plugin Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ def to_yaml(self):
171171 "description-format" : "markdown" ,
172172 "authors" : self .get_authors (),
173173 "tags" : {
174- "type" : self .get_type_tag (),
174+ "type" : self .get_type_tags (),
175175 "lang" : self .get_langs (),
176176 "platform" : self .get_platforms (),
177177 "publish" : [".itchio" ],
@@ -183,7 +183,7 @@ def to_yaml(self):
183183 }
184184 return YamlData (self ._load_hook (ret ))
185185
186- def get_type_tag (self ):
186+ def get_type_tags (self ):
187187 repl = {
188188 "Visual Novel" : "visual-novel" ,
189189 "Real time strategy" : "real-time-strategy" ,
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def to_yaml(self):
6161 "description-format" : "markdown" ,
6262 "authors" : self .get_authors (),
6363 "tags" : {
64- "type" : self .get_type_tag (),
64+ "type" : self .get_type_tags (),
6565 "lang" : self .get_langs (),
6666 "platform" : self .get_platforms (),
6767 "publish" : ["steam" ],
@@ -117,7 +117,7 @@ def get_platforms(self):
117117 repl = {"windows" : "windows" , "mac" : "macos" , "linux" : "linux" }
118118 return [repl [i ] for i in temp if temp [i ]]
119119
120- def get_type_tag (self ):
120+ def get_type_tags (self ):
121121 repl = {
122122 "Adventure" : "adventure" ,
123123 "Action" : "action" ,
You can’t perform that action at this time.
0 commit comments