From 74ca949a5b6f7d65f30407da29afc0788b531b33 Mon Sep 17 00:00:00 2001 From: Paul Coene Date: Mon, 28 Oct 2019 10:16:20 -0400 Subject: [PATCH] Added rule to allow merchants to have a corpse. --- common/ruletypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/ruletypes.h b/common/ruletypes.h index d33aaf71b..0a388b4eb 100644 --- a/common/ruletypes.h +++ b/common/ruletypes.h @@ -628,6 +628,7 @@ RULE_INT(Merchant, PricePenaltyPct, 4, "Determines maximum price penalty from ha RULE_REAL(Merchant, ChaBonusMod, 3.45, "Determines CHA cap, from 104 CHA. 3.45 is 132 CHA at apprehensive. 0.34 is 400 CHA at apprehensive") RULE_REAL(Merchant, ChaPenaltyMod, 1.52, "Determines CHA bottom, up to 102 CHA. 1.52 is 37 CHA at apprehensive. 0.98 is 0 CHA at apprehensive") RULE_BOOL(Merchant, EnableAltCurrencySell, true, "Enables the ability to resell items to alternate currency merchants") +RULE_BOOL(Merchant, AllowCorpse, false, "Can merchants generate a corpse") RULE_CATEGORY_END() RULE_CATEGORY(Bazaar)