RP log bug fix

Bug would not allow logs to be closed
This commit is contained in:
Alex Stewart
2019-03-20 11:57:37 -07:00
parent d56d60558e
commit 7797f8d1d2
+1 -1
View File
@@ -47,7 +47,7 @@ public class RPManager
public File endRP(KittyChannel channel, KittyUser user) throws FileNotFoundException, UnsupportedEncodingException
{
if(logs.containsKey(Long.parseLong(channel.uniqueID)))
if(!logs.containsKey(Long.parseLong(channel.uniqueID)))
{
return null;
}