1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-24 18:47:45 +00:00
This commit is contained in:
Matthe815 2023-01-06 23:05:28 -05:00
parent 17ff01a84c
commit efbd911234

View file

@ -457,7 +457,7 @@ void PlayerMinimal::createCurrencyDbContainer() const
{ {
auto stmtCreateCurrency = g_charaDb.getPreparedStatement( Db::CHARA_CURRENCYINV_INS ); auto stmtCreateCurrency = g_charaDb.getPreparedStatement( Db::CHARA_CURRENCYINV_INS );
stmtCreateCurrency->setUInt64( 1, m_characterId ); stmtCreateCurrency->setUInt64( 1, m_characterId );
stmtCreateCurrency->setInt( 2, 2000 ); stmtCreateCurrency->setInt( 2, 2000 ); =
g_charaDb.directExecute( stmtCreateCurrency ); g_charaDb.directExecute( stmtCreateCurrency );
} }