OSDN Git Service

Merge pull request #655 from sikabane-works/release/3.0.0Alpha15 3.0.0Alpha15
authorDeskull <61610939+sikabane-works@users.noreply.github.com>
Mon, 29 Mar 2021 09:49:07 +0000 (18:49 +0900)
committerGitHub <noreply@github.com>
Mon, 29 Mar 2021 09:49:07 +0000 (18:49 +0900)
Release/3.0.0 alpha15

doxygen/Hengband.doxyfile
lib/edit/t0000001.txt
src/load/monster-loader.cpp
src/system/angband-version.h

index f1b3562..e12d117 100644 (file)
@@ -38,7 +38,7 @@ PROJECT_NAME           = Hengband
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = 3.0.0Alpha14
+PROJECT_NUMBER         = 3.0.0Alpha15
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description
 # for a project that appears at the top of each page and should give viewer a
index ed08b0c..4fa47ec 100644 (file)
@@ -136,7 +136,6 @@ F:!:FLOOR:3:0:75
 # Continue with quest 18
 ?:[EQU $QUEST14 4]
 F:b:BUILDING_1:3:0:0:0:0:NONE:18
-F:!:FLOOR:3:0:75
 
 # Continue with quest 18
 ?:[EQU $QUEST14 6]
index a0cb59d..8ab3371 100644 (file)
@@ -109,6 +109,9 @@ void rd_monster(player_type *player_ptr, monster_type *m_ptr)
     } else
         m_ptr->mtimed[MTIMED_INVULNER] = 0;
 
+    m_ptr->mflag.clear();
+    m_ptr->mflag2.clear();
+
     if (flags & SAVE_MON_SMART) {
         if (loading_savefile_version_is_older_than(2)) {
             u32b tmp32u;
@@ -139,9 +142,6 @@ void rd_monster(player_type *player_ptr, monster_type *m_ptr)
     } else
         m_ptr->exp = 0;
 
-    m_ptr->mflag.clear();
-    m_ptr->mflag2.clear();
-
     if (flags & SAVE_MON_MFLAG2) {
         if (loading_savefile_version_is_older_than(2)) {
             rd_byte(&tmp8u);
index 4927fc4..cb52bfc 100644 (file)
@@ -17,7 +17,7 @@
 #define H_VER_MAJOR  3 //!< ゲームのバージョン定義(メジャー番号)
 #define H_VER_MINOR  0 //!< ゲームのバージョン定義(マイナー番号)
 #define H_VER_PATCH  0 //!< ゲームのバージョン定義(パッチ番号)
-#define H_VER_EXTRA 14 //!< ゲームのバージョン定義(エクストラ番号)
+#define H_VER_EXTRA 15 //!< ゲームのバージョン定義(エクストラ番号)
 
 /*!
  * @brief セーブファイルのバージョン(3.0.0から導入)