Update UseXpBoost.js

- Lucky Egg timer fix 20 sec - > 30 min
This commit is contained in:
chaze117 2016-12-03 04:34:14 +01:00 committed by GitHub
parent 1b2ba7c6c1
commit 760a4ff4c3

View File

@ -12,14 +12,14 @@ export default function UseXpBoost(msg) {
{
item_id: msg.item_id,
item_type: "ITEM_TYPE_XP_BOOST",
expire_ms: +new Date()+20000,//1800000 ,
expire_ms: +new Date()+1800000 ,
applied_ms:+new Date()
}
]}};
this.removeItems({"301":1});
this.info.LuckyEggExp = +new Date()+20000;
this.info.LuckyEggExp = +new Date()+1800000;
return (
POGOProtos.serialize(buffer, "POGOProtos.Networking.Responses.UseItemXpBoostResponse")
);
}
}