patch 8.1.1865: spellrare and spellrepall in the wrong order
Problem: Spellrare and spellrepall in the wrong order.
Solution: Put spellrare below spellrepall. (closes #4820)
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index c124a1e..2490b54 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1378,9 +1378,6 @@
EXCMD(CMD_spellgood, "spellgood", ex_spell,
EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
ADDR_OTHER),
-EXCMD(CMD_spellrare, "spellrare", ex_spell,
- EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
- ADDR_OTHER),
EXCMD(CMD_spelldump, "spelldump", ex_spelldump,
EX_BANG|EX_TRLBAR,
ADDR_NONE),
@@ -1390,6 +1387,9 @@
EXCMD(CMD_spellrepall, "spellrepall", ex_spellrepall,
EX_TRLBAR,
ADDR_NONE),
+EXCMD(CMD_spellrare, "spellrare", ex_spell,
+ EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
+ ADDR_OTHER),
EXCMD(CMD_spellundo, "spellundo", ex_spell,
EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
ADDR_OTHER),