Slight change to DBM revision check logic

Without DBM, this wouldn't be hidden.
Follow-up to commit: 31ad61fe5f
This commit is contained in:
Zidras 2021-06-09 20:34:44 +01:00 committed by Bunny67
parent c889561003
commit 67e2dfe60e

View file

@ -6059,7 +6059,7 @@ Private.event_prototypes = {
};
if (DBM and tonumber(DBM.Revision) < 7003) then
if not (DBM and tonumber(DBM.Revision) >= 7003) then
Private.event_prototypes["DBM Announce"] = nil
Private.event_prototypes["DBM Timer"] = nil
end