From 1df652683e77a97b451361a181d7b3f0465c0c37 Mon Sep 17 00:00:00 2001 From: nhmall Date: Tue, 1 Oct 2019 21:06:07 -0400 Subject: [PATCH] allow orctown booty items to be initialized in mksobj --- doc/fixes36.3 | 1 + src/mkmaze.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/fixes36.3 b/doc/fixes36.3 index 4d853b695..55d8d28a9 100644 --- a/doc/fixes36.3 +++ b/doc/fixes36.3 @@ -156,6 +156,7 @@ uarmh null pointer dereference if a helm of opposite alignment came off due to being polymorphed verb tense was inappropriate in some messages when a mon/pet had a name ending in 's' +orctown booty items should have been initialized in mksobj() Fixes to Post-3.6.2 Problems that Were Exposed Via git Repository diff --git a/src/mkmaze.c b/src/mkmaze.c index 9079b1e4f..cd7b52369 100644 --- a/src/mkmaze.c +++ b/src/mkmaze.c @@ -702,7 +702,7 @@ const char *gang; { struct obj *otmp; - otmp = mksobj_migr_to_species(otyp, (unsigned long) M2_ORC, FALSE, FALSE); + otmp = mksobj_migr_to_species(otyp, (unsigned long) M2_ORC, TRUE, FALSE); if (otmp && gang) { new_oname(otmp, strlen(gang) + 1); /* removes old name if present */ Strcpy(ONAME(otmp), gang);