From c65347ab17d61a4118efdc4a3568bf71b088ab63 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 7 Oct 2019 19:19:38 +0200 Subject: [PATCH] LOLWUT: version 6: change text message & credits. --- src/lolwut6.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lolwut6.c b/src/lolwut6.c index 46f76cc2..b76d8069 100644 --- a/src/lolwut6.c +++ b/src/lolwut6.c @@ -32,10 +32,11 @@ * fun and interesting, and should be replaced by a new implementation at * each new version of Redis. * + * Thanks to Michele Hiki Falcone for the original image that ispired + * the image, part of his game, Plaguemon. + * * Thanks to the Shhh computer art collective for the help in tuning the - * output to have a better artistic effect. Also thanks to Michele Hiki Falcone - * for sending me the original gameboy image that this LOLWUT makes - * generative. + * output to have a better artistic effect. */ #include "server.h" @@ -189,7 +190,8 @@ void lolwut6Command(client *c) { generateSkyline(canvas); sds rendered = renderCanvas(canvas); rendered = sdscat(rendered, - "\nDedicated to the 8 bit game developers of the past. Redis ver. "); + "\nDedicated to the 8 bit game developers of past and present.\n" + "Original 8 bit image from Plaguemon by hikikomori. Redis ver. "); rendered = sdscat(rendered,REDIS_VERSION); rendered = sdscatlen(rendered,"\n",1); addReplyVerbatim(c,rendered,sdslen(rendered),"txt");