]> granicus.if.org Git - nethack/commitdiff
Update version numbers in source comments
authorPasi Kallinen <paxed@alt.org>
Fri, 6 Nov 2015 14:04:48 +0000 (16:04 +0200)
committerPasi Kallinen <paxed@alt.org>
Fri, 6 Nov 2015 14:05:36 +0000 (16:05 +0200)
include/pcconf.h
src/dig.c
src/dog.c
src/dothrow.c
src/dungeon.c
src/mon.c
src/mplayer.c
src/objects.c
src/objnam.c
src/rumors.c
src/spell.c

index 22c4f1859017e73f2f64a5df71213b002c77c549..a8806cfe56ac35acc1ad78698f27d5b7e690401e 100644 (file)
@@ -17,7 +17,7 @@
  *     _MSC_VER is defined automatically by Microsoft C.
  *     __BORLANDC__ is defined automatically by Borland C.
  *     __SC__ is defined automatically by Symantec C.
- *     Note: 3.5.x was not verified with Symantec C.
+ *     Note: 3.6.x was not verified with Symantec C.
  */
 
 /*
index ec102af407425f2679f869c76fe9f452453fc0e0..0631c4365e4e7280079341a7c123cca7fb2e7193 100644 (file)
--- a/src/dig.c
+++ b/src/dig.c
@@ -1387,7 +1387,7 @@ zap_dig()
      * an ACCESSIBLE place.
      * Currently: dig for digdepth positions;
      * also down on request of Lennart Augustsson.
-     * 3.5.0: from a PIT: dig one adjacent pit.
+     * 3.6.0: from a PIT: dig one adjacent pit.
      */
 
     if (u.uswallow) {
index 2efafb96a8899e6d5ea3e99bfd0a2c0ba5674536..efcb76892831aa0cd9647487d3599be2d95d7a71 100644 (file)
--- a/src/dog.c
+++ b/src/dog.c
@@ -856,7 +856,7 @@ register struct obj *obj;
 }
 
 /*
- * With the separate mextra structure added in 3.5.x this always
+ * With the separate mextra structure added in 3.6.x this always
  * operates on the original mtmp. It now returns TRUE if the taming
  * succeeded.
  */
index f25afdd8297aa4b67963cc6fde7291487654c283..7336451ec61723b5c1dad00b9bae1550bf8b61e4 100644 (file)
@@ -271,7 +271,7 @@ dothrow()
      * Prior to 3.3.0, command ``3t'' meant ``t(shoot) t(shoot) t(shoot)''
      * and took 3 turns.  Now it means ``t(shoot at most 3 missiles)''.
      *
-     * [3.5.0:  shot count setup has been moved into ok_to_throw().]
+     * [3.6.0:  shot count setup has been moved into ok_to_throw().]
      */
     if (!ok_to_throw(&shotlimit))
         return 0;
index 254d10cc0283a730297cc28ee1312187367a338e..064798ef52a22f26127fbc946d01b5562823c8b9 100644 (file)
@@ -2340,7 +2340,7 @@ recalc_mapseen()
      * we could track "features" and then update them all here, and keep
      * track of when new features are created or destroyed, but this
      * seemed the most elegant, despite adding more data to struct rm.
-     * [3.5.0: we're using lastseentyp[][] rather than level.locations
+     * [3.6.0: we're using lastseentyp[][] rather than level.locations
      * to track the features seen.]
      *
      * Although no current windowing systems (can) do this, this would add
index fa62f20404c64eadaef4f41484170819d6ab1fb3..889599b84513704e0d190a64b08988492d560d2f 100644 (file)
--- a/src/mon.c
+++ b/src/mon.c
@@ -202,7 +202,7 @@ int mndx;
     int mcham = NON_PM;
 
     /*
-     * As of 3.5.0 we just check M2_SHAPESHIFTER instead of having a
+     * As of 3.6.0 we just check M2_SHAPESHIFTER instead of having a
      * big switch statement with hardcoded shapeshifter types here.
      */
     if (mndx >= LOW_PM && is_shapeshifter(&mons[mndx]))
index 77733d2cdea4bb9f382dead099d43fb6faa642b6..6ad230d41095223732b1c9011723b5415c46b8cf 100644 (file)
@@ -9,7 +9,7 @@ STATIC_DCL void FDECL(get_mplname, (struct monst *, char *));
 STATIC_DCL void FDECL(mk_mplayer_armor, (struct monst *, SHORT_P));
 
 /* These are the names of those who
- * contributed to the development of NetHack 3.2/3.3/3.4/3.5.
+ * contributed to the development of NetHack 3.2/3.3/3.4/3.6.
  *
  * Keep in alphabetical order within teams.
  * Same first name is entered once within each team.
index aa8c26de8ac2f6106dbb97340dd485a9dfa07ef9..62e62da50390da8eccdb03559d8417291ff78a6c 100644 (file)
@@ -170,7 +170,7 @@ WEAPON("knife", None,
        1, 1, 0, 20,   5,   4,  3,  2, 0, P|S, P_KNIFE, IRON, HI_METAL),
 WEAPON("stiletto", None,
        1, 1, 0,  5,   5,   4,  3,  2, 0, P|S, P_KNIFE, IRON, HI_METAL),
-/* 3.5/3.6: worm teeth and crysknives now stack;
+/* 3.6: worm teeth and crysknives now stack;
    when a stack of teeth is enchanted at once, they fuse into one crysknife;
    when a stack of crysknives drops, the whole stack reverts to teeth */
 WEAPON("worm tooth", None,
index 7eb0531ae81566f630466f9b71be24c0a0f7a7b9..16649b375981e7057d32d79cbdcd4871fd569bf1 100644 (file)
@@ -1931,7 +1931,7 @@ char *str;
  * trying to get those right here.
  *
  * Also misused by muse.c to convert 1st person present verbs to 2nd person.
- * 3.5.0: made case-insensitive.
+ * 3.6.0: made case-insensitive.
  */
 char *
 makeplural(oldstr)
@@ -2096,7 +2096,7 @@ bottom:
  *
  * A lot of unique monsters have names ending in s; plural, or singular
  * from plural, doesn't make much sense for them so we don't bother trying.
- * 3.5.0: made case-insensitive.
+ * 3.6.0: made case-insensitive.
  */
 char *
 makesingular(oldstr)
index ebf5a532e425d70e2d85aedc743d8960d179a69f..18656e5e71301c635ac2015c08ec54e68fa463a1 100644 (file)
@@ -15,7 +15,7 @@
  * this also happens with real fortune cookies.  -dgk
  */
 
-/*      3.5
+/*      3.6
  * The rumors file consists of a "do not edit" line, then a line containing
  * three sets of three counts (first two in decimal, third in hexadecimal).
  * The first set has the number of true rumors, the count in bytes for all
index cbe06065d082e24144014a3c85a84e5363e1af62..1e8c70e09b6e340c37bf7623dc0239ec16d6a520 100644 (file)
@@ -745,7 +745,7 @@ cast_protection()
     int l = u.ulevel, loglev = 0,
         gain, natac = u.uac + u.uspellprot;
     /* note: u.uspellprot is subtracted when find_ac() factors it into u.uac,
-       so adding here factors it back out (3.4.3,3.5 had this backwards) */
+       so adding here factors it back out (3.4.3,3.6 had this backwards) */
 
     /* loglev=log2(u.ulevel)+1 (1..5) */
     while (l) {