"If you see me running, try to keep up."

Noticed while poking about in read.c for the ^G feedback change:
a relatively recently added apron slogan turns out to be a near
duplicate of an existing T-shirt slogan.  Change the apron one a
little, although they're still nearly identical.
This commit is contained in:
PatR
2021-02-20 17:24:25 -08:00
parent b9ed4407de
commit d6d42f56b2
+9 -3
View File
@@ -1,4 +1,4 @@
/* NetHack 3.7 read.c $NHDT-Date: 1613870144 2021/02/21 01:15:44 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.218 $ */ /* NetHack 3.7 read.c $NHDT-Date: 1613870658 2021/02/21 01:24:18 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.219 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2012. */ /*-Copyright (c) Robert Patrick Rankin, 2012. */
/* NetHack may be freely redistributed. See license for details. */ /* NetHack may be freely redistributed. See license for details. */
@@ -107,6 +107,7 @@ tshirt_text(struct obj* tshirt, char* buf)
"Hey! Nymphs! Steal This T-Shirt!", "Hey! Nymphs! Steal This T-Shirt!",
"I <3 Dungeon of Doom", "I <3 Dungeon of Doom",
"I <3 Maud", "I <3 Maud",
/* note: there is a similarly worded apron (alchemy smock) slogan */
"I am a Valkyrie. If you see me running, try to keep up.", "I am a Valkyrie. If you see me running, try to keep up.",
"I am not a pack rat - I am a collector", "I am not a pack rat - I am a collector",
"I bounced off a rubber tree", /* Monkey Island */ "I bounced off a rubber tree", /* Monkey Island */
@@ -120,6 +121,7 @@ tshirt_text(struct obj* tshirt, char* buf)
"Meat is Mordor", "Meat is Mordor",
"Minetown Better Business Bureau", "Minetown Better Business Bureau",
"Minetown Watch", "Minetown Watch",
/* Discworld riff; unfortunately long */
"Ms. Palm's House of Negotiable Affection--A Very Reputable House Of Disrepute", "Ms. Palm's House of Negotiable Affection--A Very Reputable House Of Disrepute",
"Protection Racketeer", "Protection Racketeer",
"Real men love Crom", "Real men love Crom",
@@ -177,8 +179,12 @@ apron_text(struct obj* apron, char* buf)
bomb technician, if you see me running ... try to catch up." bomb technician, if you see me running ... try to catch up."
In nethack, the quote is far more suitable to an alchemy smock In nethack, the quote is far more suitable to an alchemy smock
(particularly since so many of these others are about cooking) (particularly since so many of these others are about cooking)
than a T-shirt and is paraphrased to simplify/shorten it. */ than a T-shirt and is paraphrased to simplify/shorten it.
"If you see me running, try to keep up...", [later... turns out that this is already a T-shirt message:
"I am a Valkyrie. If you see me running, try to keep up."
so this one has been revised a little: added alchemist prefix,
changed "keep up" to original source's "catch up"] */
"I am an alchemist; if you see me running, try to catch up...",
}; };
Strcpy(buf, apron_msgs[apron->o_id % SIZE(apron_msgs)]); Strcpy(buf, apron_msgs[apron->o_id % SIZE(apron_msgs)]);