From 1830b87e6fc0dcf267f1889c301f1a649a7e7fee Mon Sep 17 00:00:00 2001 From: Logokas Renard Date: Sat, 25 Jan 2020 14:01:58 +1000 Subject: [PATCH] Update script-merchandise.rpy Fixed the author tag issue which should also fix the Travis bug, to allow this to be merged without issue --- script-merchandise.rpy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script-merchandise.rpy b/script-merchandise.rpy index 91579c8..e47ea78 100644 --- a/script-merchandise.rpy +++ b/script-merchandise.rpy @@ -12,7 +12,8 @@ init -200 python: skit_merchandise = Skit( "Merchandise", # Set this to be the title of your skit. "merchandise", # Set this to be the label that you call below. - "merchandise_thumbnail" # Set this to be the thumbnail you want for your skit. If you aren't using one from the original game, then you'll need to define its image. + "merchandise_thumbnail", # Set this to be the thumbnail you want for your skit. If you aren't using one from the original game, then you'll need to define its image. + "@Chiff the Oblivious#4251" # Author ) skits.append(skit_merchandise) # Add your skit to the list! Make sure it matches the name above.