Build 2407.

This commit is contained in:
sigonasr2 2023-10-24 05:25:30 -05:00
parent c23c96b6b1
commit b89311a657
6 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ public:
std::vector<std::string>classList=DATA["class_list"].GetValues();
auto it=std::find(classList.begin(),classList.end(),className);
int element=std::distance(classList.begin(),it);
return Class(1<<element);
return Class(1<<element); //Yes...It's bitwise flags, who in god's name knows why I did this.
};
static inline ClassInfo GetClassInfo(std::string className){
ClassInfo data{

View File

@ -2,7 +2,7 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 0
#define VERSION_BUILD 2405
#define VERSION_BUILD 2407
#define stringify(a) stringify_(a)
#define stringify_(a) #a

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 MiB

After

Width:  |  Height:  |  Size: 6.7 MiB

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.