(chan): Don't require 254 BTUs even when not charging any (BLITZ).

This commit is contained in:
Markus Armbruster 2003-10-04 18:29:29 +00:00
parent fca6c1bc2f
commit f922b09074

View file

@ -70,18 +70,15 @@ chan(void)
charge = 0; charge = 0;
btucost = 0; btucost = 0;
if (!player->god && (us->nat_stat & STAT_NORM)) { if (!player->god && (us->nat_stat & STAT_NORM)) {
if (opt_BLITZ == 0) {
if (us->nat_btu < 254) { if (us->nat_btu < 254) {
pr("You need 254 btus to change your country name!\n"); pr("You need 254 btus to change your country name!\n");
return RET_FAIL; return RET_FAIL;
} }
if (opt_BLITZ == 0) {
pr("This command costs 254 BTU's and 10%% of your money.\n"); pr("This command costs 254 BTU's and 10%% of your money.\n");
if (!confirm("Are you sure you want to do this? ")) if (!confirm("Are you sure you want to do this? "))
return RET_FAIL; return RET_FAIL;
btucost = 254; btucost = 254;
/* charge = 2000; */
/*if (us->nat_money < charge*10) */
/* charge = us->nat_money / 10; */
if (us->nat_money <= 0) if (us->nat_money <= 0)
charge = 0; charge = 0;
else else
@ -110,10 +107,8 @@ chan(void)
pr("Must have a non-blank name!\n"); pr("Must have a non-blank name!\n");
return RET_FAIL; return RET_FAIL;
} }
if (opt_BLITZ == 0) {
player->dolcost += charge; player->dolcost += charge;
player->btused += btucost; player->btused += btucost;
}
strcpy(us->nat_cnam, p); strcpy(us->nat_cnam, p);
putnat(us); putnat(us);
nreport(player->cnum, N_NAME_CHNG, 0, 1); nreport(player->cnum, N_NAME_CHNG, 0, 1);