From bce6d1e2effe7ceb55357f35cf3b4b2d7529c421 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 14 Oct 2021 23:49:22 -0400 Subject: [PATCH] Fix PlanetHash being null on user creation --- ProjectLighthouse/Database.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ProjectLighthouse/Database.cs b/ProjectLighthouse/Database.cs index a8372e49..dc33f549 100644 --- a/ProjectLighthouse/Database.cs +++ b/ProjectLighthouse/Database.cs @@ -28,7 +28,8 @@ namespace ProjectLighthouse { Username = username, LocationId = l.Id, Biography = "No biography provided", - Pins = "" + Pins = "", + PlanetHash = "", }; this.Users.Add(user);