Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Corn
0d991c2655 3.48.8 2025-05-28 05:23:39 -04:00
Alex Corn
0a307de9b9 Prevent descriptions overwriting base econ item properties 2025-05-28 05:23:25 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ function CEconItem(item, description, contextID) {
}
for (thing in description) {
if (description.hasOwnProperty(thing)) {
if (description.hasOwnProperty(thing) && !this.hasOwnProperty(thing)) {
this[thing] = description[thing];
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "steamcommunity",
"version": "3.48.7",
"version": "3.48.8",
"description": "Provides an interface for logging into and interacting with the Steam Community website",
"files": [
"/classes",