--- tables.c	Mon Jun  2 22:46:09 1997
+++ new/tables.c	Tue Jun  3 23:46:49 1997
@@ -73,6 +73,7 @@
     if ( !str_cmp( name, "spell_dispel_magic" ))     return spell_dispel_magic;
     if ( !str_cmp( name, "spell_dream" ))	     return spell_dream;
     if ( !str_cmp( name, "spell_earthquake" ))	     return spell_earthquake;
+    if ( !str_cmp( name, "spell_enchant_armor" ))    return spell_enchant_armor;
     if ( !str_cmp( name, "spell_enchant_weapon" ))   return spell_enchant_weapon;
     if ( !str_cmp( name, "spell_energy_drain" ))     return spell_energy_drain;
     if ( !str_cmp( name, "spell_faerie_fire" ))	     return spell_faerie_fire;
@@ -123,6 +124,8 @@
     if ( !str_cmp( name, "spell_hand_of_chaos" ))    return spell_hand_of_chaos;
     if ( !str_cmp( name, "spell_disruption" ))	     return spell_disruption;
     if ( !str_cmp( name, "spell_sonic_resonance" ))  return spell_sonic_resonance;
+    if ( !str_cmp( name, "spell_death" ))            return spell_death;
+    if ( !str_cmp( name, "spell_assassinate" ))      return spell_assassinate;
     if ( !str_cmp( name, "spell_mind_wrack" ))	     return spell_mind_wrack;
     if ( !str_cmp( name, "spell_mind_wrench" ))	     return spell_mind_wrench;
     if ( !str_cmp( name, "spell_revive" ))	     return spell_revive;
@@ -132,6 +135,7 @@
     if ( !str_cmp( name, "spell_galvanic_whip" ))    return spell_galvanic_whip;
     if ( !str_cmp( name, "spell_magnetic_thrust" ))  return spell_magnetic_thrust;
     if ( !str_cmp( name, "spell_quantum_spike" ))    return spell_quantum_spike;
     if ( !str_cmp( name, "spell_black_hand" ))	     return spell_black_hand;
     if ( !str_cmp( name, "spell_black_fist" ))	     return spell_black_fist;
     if ( !str_cmp( name, "spell_black_lightning" ))  return spell_black_lightning;
@@ -211,9 +215,10 @@
 	if ( !str_cmp( name, "do_council_outcast" ))	return do_council_outcast;
 	if ( !str_cmp( name, "do_councils" ))		return do_councils;
 	if ( !str_cmp( name, "do_counciltalk" ))	return do_counciltalk;
+	if ( !str_cmp( name, "do_copyover" ))		return do_copyover;
 	if ( !str_cmp( name, "do_credits" ))		return do_credits;
 	if ( !str_cmp( name, "do_cset" ))		return do_cset;
-	break;
+ 	break;
     case 'd':
 	if ( !str_cmp( name, "do_deities" ))		return do_deities;
 	if ( !str_cmp( name, "do_deny" ))		return do_deny;
@@ -540,6 +545,7 @@
 	if ( !str_cmp( name, "do_typo" ))		return do_typo;
 	break;
     case 'u':
+	if ( !str_cmp( name, "do_undeny" ))		return do_undeny;
 	if ( !str_cmp( name, "do_unfoldarea" ))		return do_unfoldarea;
 	if ( !str_cmp( name, "do_unhell" ))		return do_unhell;
 	if ( !str_cmp( name, "do_unlock" ))		return do_unlock;
@@ -604,6 +610,7 @@
     if ( spell == spell_dispel_magic )	    return "spell_dispel_magic";
     if ( spell == spell_dream )		    return "spell_dream";
     if ( spell == spell_earthquake )	    return "spell_earthquake";
+    if ( spell == spell_enchant_armor )     return "spell_enchant_armor";
     if ( spell == spell_enchant_weapon )    return "spell_enchant_weapon";
     if ( spell == spell_energy_drain )	    return "spell_energy_drain";
     if ( spell == spell_faerie_fire )	    return "spell_faerie_fire";
@@ -663,6 +670,7 @@
     if ( spell == spell_galvanic_whip )	    return "spell_galvanic_whip";
     if ( spell == spell_magnetic_thrust )   return "spell_magnetic_thrust";
     if ( spell == spell_quantum_spike )	    return "spell_quantum_spike";
     if ( spell == spell_black_hand )	    return "spell_black_hand";
     if ( spell == spell_black_fist )	    return "spell_black_fist";
     if ( spell == spell_black_lightning )   return "spell_black_lightning";
@@ -730,6 +738,7 @@
     if ( skill == do_compare )		return "do_compare";
     if ( skill == do_config )		return "do_config";
     if ( skill == do_consider )		return "do_consider";
+    if ( skill == do_copyover )		return "do_copyover";
     if ( skill == do_council_induct )	return "do_council_induct";
     if ( skill == do_council_outcast )	return "do_council_outcast";
     if ( skill == do_councils )		return "do_councils";
@@ -1029,6 +1038,7 @@
     if ( skill == do_transfer )		return "do_transfer";
     if ( skill == do_trust )		return "do_trust";
     if ( skill == do_typo )		return "do_typo";
+    if ( skill == do_undeny )		return "do_undeny";
     if ( skill == do_unfoldarea )	return "do_unfoldarea";
     if ( skill == do_unhell )		return "do_unhell";
     if ( skill == do_unlock )		return "do_unlock";