Possible fix for armoury_entity pickups on some maps.

This commit is contained in:
jeefo 2019-10-02 15:14:27 +03:00
commit e2dbd6d91e
2 changed files with 18 additions and 12 deletions

View file

@ -88,7 +88,7 @@ public:
// singleton for objects
template <typename T> struct Singleton : private DenyCopying {
public:
static inline T &get () {
static T &get () {
static T ref_;
return ref_;
};