Rename the class in Player.js to Player (#202)

This commit is contained in:
xparadoxical 2022-02-08 00:25:10 +01:00 committed by GitHub
parent 2eaa3ee88b
commit ff7cc0e832
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
const colors = require('../misc/icons/colors.json');
class Level {
class Player {
constructor(account) {
this.username = account[1] || "-",
this.playerID = account[2],
@ -50,4 +50,4 @@ class Level {
}
}
module.exports = Level;
module.exports = Player;