Mercurial > hg > early-roguelike
comparison arogue7/rip.c @ 179:ca876944b196
Advanced Rogue 7: rename magic users to magicians.
Class names with spaces in them confuse anything that parses the
logfile. The documentation does refer mostly to magicians.
author | John "Elwin" Edwards |
---|---|
date | Sat, 22 Aug 2015 10:55:53 -0400 |
parents | 7faf4568c295 |
children | 382ff498acdd |
comparison
equal
deleted
inserted
replaced
178:f057f09e9945 | 179:ca876944b196 |
---|---|
836 standend(); | 836 standend(); |
837 addstr("\nYou have joined the elite ranks of those who have escaped the\n"); | 837 addstr("\nYou have joined the elite ranks of those who have escaped the\n"); |
838 addstr("Dungeons of Doom alive. You journey home and sell all your loot at\n"); | 838 addstr("Dungeons of Doom alive. You journey home and sell all your loot at\n"); |
839 addstr("a great profit and are appointed leader of a "); | 839 addstr("a great profit and are appointed leader of a "); |
840 switch (player.t_ctype) { | 840 switch (player.t_ctype) { |
841 case C_MAGICIAN:addstr("magic user's guild.\n"); | 841 case C_MAGICIAN:addstr("magician's guild.\n"); |
842 when C_FIGHTER: addstr("fighter's guild.\n"); | 842 when C_FIGHTER: addstr("fighter's guild.\n"); |
843 when C_RANGER: addstr("ranger's guild.\n"); | 843 when C_RANGER: addstr("ranger's guild.\n"); |
844 when C_CLERIC: addstr("monastery.\n"); | 844 when C_CLERIC: addstr("monastery.\n"); |
845 when C_PALADIN: addstr("monastery.\n"); | 845 when C_PALADIN: addstr("monastery.\n"); |
846 when C_MONK: addstr("monastery.\n"); | 846 when C_MONK: addstr("monastery.\n"); |