Fix typo in modPersistentData table

This commit is contained in:
Connor Sullivan 2022-01-10 14:41:34 -06:00 committed by Barichello
parent e0e8c0f4f4
commit a736aec198
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ let playerDB = new sqlite.Database( 'playerdata.db', sqlite.OPEN_CREATE | sqlite
// create mod persistent data table
// this should mirror the PlayerAccount class's properties
playerDB.run( `
CREATE TABLE IF NOT EXISTS modPeristentData (
CREATE TABLE IF NOT EXISTS modPersistentData (
id TEXT NOT NULL,
pdiffHash TEXT NOT NULL,
data TEXT NOT NULL,