Set the correct key in QuitNPCRepository

This commit is contained in:
cnr 2017-07-11 23:17:58 -07:00
parent c0cc3789b1
commit cecc3614b8
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class QuitNPCRepository extends RedisRepository
{ {
try (Jedis jedis = getResource(true)) try (Jedis jedis = getResource(true))
{ {
jedis.setex(REDIS_KEY_PREFIX + uuid.toString(), 60, serverName); jedis.setex(getKey(REDIS_KEY_PREFIX + uuid.toString()), 60, serverName);
} }
}); });
} }