@@ -29,7 +29,7 @@ For more information, please refer to <http://unlicense.org>
2929/*
3030Made By: Patrick J. Rye
3131Purpose: A game I made as an attempt to teach myself c++, just super basic, but going to try to keep improving it as my knowledge increases.
32- Current Revision: 2.5ß
32+ Current Revision: 3.0b-dev2
3333Change Log---------------------------------------------------------------------------------------------------------------------------------------------------
3434Date Revision Changed By Changes
3535------ --------- ------------ ---------------------------------------------------------------------------------------------------------------------
@@ -89,6 +89,8 @@ Date Revision Changed By Changes
8989 -Changed change log date format from MM/DD/YY to YYYY/MM/DD because I like it better.
9090 -Added better opening message.
9191 -Replaced all system("pause") with getchar();
92+ =============================================================================================================================================================
93+ 2015/03/06 3.0b Patrick Rye -Redid some calcuations in battle.h
9294=============================================================================================================================================================
9395*/
9496
@@ -114,7 +116,7 @@ Dungeon d; //Define the dungeon class as 'd' so I can use functions in there any
114116int intMainLevel; // The level of the dungeon.
115117int intLevelStart = 1 ; // The level that the game starts at. Will be 1 unless loading from a save.
116118bool blDebugMode = false ; // If game is in debug mode or not, effects if player has access to debug commands.
117- const string CurrentVerison = " 2.5ß " ; // The current version of this program, stored in a save file later on.
119+ const string CurrentVerison = " 3.0b-dev2 " ; // The current version of this program, stored in a save file later on.
118120/* ********************************************************************************************************/
119121const string OpeningMessage[16 ] = {" \n " ,
120122 " ,--. ,--. ,--. \n " ,
0 commit comments