From fa1af68fdfca3c53512b3e41a0b667d93b767c1d Mon Sep 17 00:00:00 2001 From: kinther Date: Thu, 14 Aug 2025 12:37:31 -0700 Subject: [PATCH] Remove XP sacrifice gain and --- src/act.item.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/act.item.c b/src/act.item.c index 3a34604..773cdf8 100644 --- a/src/act.item.c +++ b/src/act.item.c @@ -1539,18 +1539,10 @@ ACMD(do_sac) send_to_char(ch, "You sacrifice %s to the Gods.\r\nThe Gods ignore your sacrifice.\r\n", GET_OBJ_SHORT(j)); break; case 2: - send_to_char(ch, "You sacrifice %s to the Gods.\r\nThe gods give you %d experience points.\r\n", GET_OBJ_SHORT(j), 1+2*GET_OBJ_LEVEL(j)); - GET_EXP(ch) += (1+2*GET_OBJ_LEVEL(j)); - break; - case 3: - send_to_char(ch, "You sacrifice %s to the Gods.\r\nYou receive %d experience points.\r\n", GET_OBJ_SHORT(j), 1+GET_OBJ_LEVEL(j)); - GET_EXP(ch) += (1+GET_OBJ_LEVEL(j)); - break; - case 4: send_to_char(ch, "Your sacrifice to the Gods is rewarded with %d gold coins.\r\n", 1+GET_OBJ_LEVEL(j)); increase_gold(ch, (1+GET_OBJ_LEVEL(j))); break; - case 5: + case 3: send_to_char(ch, "Your sacrifice to the Gods is rewarded with %d gold coins\r\n", (1+2*GET_OBJ_LEVEL(j))); increase_gold(ch, (1+2*GET_OBJ_LEVEL(j))); break;