struct ItemLevelTraits
{
typedef unsigned Type;
- static unsigned get_min() { return 0; }
+ static unsigned get_min() { return 1; }
static unsigned get_max() { return 100; }
static const char *get_keyword() { return "ItemLevel"; }
};
struct DropLevelTraits
{
typedef unsigned Type;
- static unsigned get_min() { return 0; }
+ static unsigned get_min() { return 1; }
static unsigned get_max() { return 100; }
static const char *get_keyword() { return "DropLevel"; }
};