From 9d9374ec194f96ef6ba1b3df017bb36e96c32cc6 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sat, 3 Aug 2019 01:32:56 -0500 Subject: [PATCH] Fix #gmzone to actually create bucket flags via version --- zone/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/command.cpp b/zone/command.cpp index bd5aa71c9..659acd1a1 100755 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -4490,7 +4490,7 @@ void command_gmzone(Client *c, const Seperator *sep) identifier = sep->arg[3]; } - std::string bucket_key = StringFormat("%s-%s-instance", zone_short_name, identifier.c_str()); + std::string bucket_key = StringFormat("%s-%s-%u-instance", zone_short_name, zone_version, identifier.c_str()); std::string existing_zone_instance = DataBucket::GetData(bucket_key); if (existing_zone_instance.length() > 0) {