mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-10-17 03:16:37 +00:00
[General] Replace doubles with floats in BaseStructs and BaseWorldstate
This commit is contained in:
parent
18f8725d33
commit
cb6c37a26d
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ namespace mwmp
|
||||||
std::string refId;
|
std::string refId;
|
||||||
int count;
|
int count;
|
||||||
int charge;
|
int charge;
|
||||||
double enchantmentCharge;
|
float enchantmentCharge;
|
||||||
|
|
||||||
inline bool operator==(const Item& rhs)
|
inline bool operator==(const Item& rhs)
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,7 +43,7 @@ namespace mwmp
|
||||||
|
|
||||||
RakNet::RakNetGUID guid;
|
RakNet::RakNetGUID guid;
|
||||||
|
|
||||||
double hour;
|
float hour;
|
||||||
int day;
|
int day;
|
||||||
int month;
|
int month;
|
||||||
int year;
|
int year;
|
||||||
|
|
Loading…
Reference in a new issue