Fix issue where initial change of points could set below limit
This commit is contained in:
parent
7b4967f1ca
commit
a393f2ca1e
|
@ -36,6 +36,8 @@ namespace DeukBot4.Database
|
||||||
var exists = db.HashGet("points", (RedisValue) key);
|
var exists = db.HashGet("points", (RedisValue) key);
|
||||||
if (!exists.HasValue)
|
if (!exists.HasValue)
|
||||||
{
|
{
|
||||||
|
if (deltaPoints < -100)
|
||||||
|
deltaPoints = -100;
|
||||||
db.HashSet("points", (RedisValue) key, deltaPoints);
|
db.HashSet("points", (RedisValue) key, deltaPoints);
|
||||||
return deltaPoints;
|
return deltaPoints;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue