mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
Changed ItemUseType enumeration to ItemInstTypes enumeration - naming conflicted with definition
This commit is contained in:
+2
-2
@@ -270,7 +270,7 @@ bool Zone::LoadZoneObjects() {
|
||||
//tradeskill containers do not have an itemid of 0... at least what I am seeing
|
||||
if (itemid == 0) {
|
||||
// Generic tradeskill container
|
||||
inst = new ItemInst(ItemUseWorldContainer);
|
||||
inst = new ItemInst(ItemInstWorldContainer);
|
||||
}
|
||||
else {
|
||||
// Groundspawn object
|
||||
@@ -279,7 +279,7 @@ bool Zone::LoadZoneObjects() {
|
||||
|
||||
//Father Nitwit's fix... not perfect...
|
||||
if(inst == nullptr && type != OT_DROPPEDITEM) {
|
||||
inst = new ItemInst(ItemUseWorldContainer);
|
||||
inst = new ItemInst(ItemInstWorldContainer);
|
||||
}
|
||||
|
||||
// Load child objects if container
|
||||
|
||||
Reference in New Issue
Block a user