feat: gilded weapons #410

Merged
AMelonInsideLemon merged 4 commits from gildWeapon into main 2024-06-27 01:21:02 -07:00
Showing only changes of commit 3c9da532a8 - Show all commits

View File

@ -35,25 +35,27 @@ export const gildWeaponController: RequestHandler = async (req, res) => {
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
data.Caterogy = req.query.Category as WeaponTypeInternal | "Hoverboards"; data.Caterogy = req.query.Category as WeaponTypeInternal | "Hoverboards";
const inventory = await getInventory(accountId); const inventory = await getInventory(accountId);
if(!inventory[data.Caterogy]){ if (!inventory[data.Caterogy]) {
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
throw new Error(`Category ${req.query.Category} dont foudn in inventory`); throw new Error(`Category ${req.query.Category} dont foudn in inventory`);
} }
const weaponIndex = inventory[data.Caterogy].findIndex(x => String(x._id) === data.ItemId); const weaponIndex = inventory[data.Caterogy].findIndex(x => String(x._id) === data.ItemId);
if(weaponIndex === -1){ if (weaponIndex === -1) {
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
throw new Error(`Weapon with ${data.ItemId} not found in category ${req.query.Category}`); throw new Error(`Weapon with ${data.ItemId} not found in category ${req.query.Category}`);
} }
const weapon = inventory[data.Caterogy][weaponIndex]; const weapon = inventory[data.Caterogy][weaponIndex];
weapon.Features = EquipmentFeatures.GILDING; // maybe 9 idk if DOUBLE_CAPACITY is also given weapon.Features = EquipmentFeatures.GILDING; // maybe 9 idk if DOUBLE_CAPACITY is also given
weapon.ItemName = data.ItemName weapon.ItemName = data.ItemName;
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
weapon.XP = 0; weapon.XP = 0;
if(data.Caterogy != "OperatorAmps" && (data.PolarizeSlot && data.PolarizeValue)){ if (data.Caterogy != "OperatorAmps" && data.PolarizeSlot && data.PolarizeValue) {
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
weapon.Polarity= [{ weapon.Polarity = [
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
{
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
Slot: data.PolarizeSlot, Slot: data.PolarizeSlot,
Value: data.PolarizeValue Value: data.PolarizeValue
}]
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
} }
inventory[data.Caterogy][weaponIndex] = weapon ];
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
}
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
inventory[data.Caterogy][weaponIndex] = weapon;
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
await inventory.save(); await inventory.save();
res.json({ res.json({

OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:16:33 -07:00 (Migrated from github.com)
Review

caterogy

caterogy
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
OrdisPrime commented 2024-06-26 07:17:09 -07:00 (Migrated from github.com)
Review

foudn
"not" instead of "don't"
please be a bit more careful with your spelling, otherwise it gives the impression of rushing

foudn "not" instead of "don't" please be a bit more careful with your spelling, otherwise it gives the impression of rushing
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
AMelonInsideLemon commented 2024-06-26 07:38:23 -07:00 (Migrated from github.com)
Review

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter

In the query the game sends - everything is capitalized, it would be wierd if one varible starts with a small letter
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
FSKiller commented 2024-06-26 08:05:16 -07:00 (Migrated from github.com)
Review

He's talking about the typo for "category". you wrote "caterogy"

He's talking about the typo for "category". you wrote "caterogy"
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
AMelonInsideLemon commented 2024-06-26 08:07:00 -07:00 (Migrated from github.com)
Review

oh thanks, I should probably get some sleep

oh thanks, I should probably get some sleep
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.
OrdisPrime commented 2024-06-26 08:23:30 -07:00 (Migrated from github.com)
Review

all good lmao, sleep well.

all good lmao, sleep well.