Skip to content

Commit

Permalink
Game Hot Fix
Browse files Browse the repository at this point in the history
Hot fix for Super Strength after Giants game update v1.8.1.0 (b21187)
  • Loading branch information
GtX-Andy committed Oct 27, 2022
1 parent 8a494c7 commit ba4bf69
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Easy Development Controls

`Farming Simulator 22` `Revision: FS22-03` `BuildId: 1.3`
`Farming Simulator 22` `Version: 1.2.0.2` `BuildId: 1.4`

## About

Expand Down
13 changes: 11 additions & 2 deletions modDesc.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<modDesc descVersion="68">
<modDesc descVersion="71">
<author>GtX</author>

<version>1.2.0.1</version>
<version>1.2.0.2</version>

<title>
<en>Easy Development Controls</en>
Expand Down Expand Up @@ -30,6 +30,9 @@ With the extended number of features plus many new features planned, Easy Develo
For further information please read the <a href="https://github.com/GtX-Andy/easyDevelopmentControls/blob/master/README.md">README</a> on the Github repository.
Changelog 1.2.0.2
- Git Hub Release: Hot fix for Super Strength after Giants game update v1.8.1.0 (b21187)
Changelog 1.2.0.0:
- Vehicle Page: 'Set Fill Level' feature will now remember last settings until vehicle is exited or changed.
- Vehicle Page: 'Remove Vehicles' feature will no longer remove pallets.
Expand Down Expand Up @@ -74,6 +77,9 @@ Mit der erweiterten Anzahl von Funktionen und vielen geplanten neuen Funktionen
Für weitere Informationen, lese dir die <a href="https://github.com/GtX-Andy/easyDevelopmentControls/blob/master/README.md">README</a> aus dem Github durch.
Changelog 1.2.0.2:
- Git Hub Release: Hotfix für Super Strength nach dem Giants-Spielupdate v1.8.1.0 (b21187)
Changelog 1.2.0.0:
- Fahrzeugseite: Die Funktion 'Fuell Level' speichert jetzt die letzten Einstellungen, bis das Fahrzeug verlassen oder gewechselt wird.
- Fahrzeugseite: Die Funktion 'Fahrzeug entfernen' entfernt keine Paletten mehr.
Expand Down Expand Up @@ -119,6 +125,9 @@ Avec le grand nombre de fonctionnalités et bien d'autres qui devraient être aj
Pour plus d'informations sur, veuillez consulter la page <a href="https://github.com/GtX-Andy/easyDevelopmentControls/blob/master/README.md">README</a> du dépot Github.
Changelog 1.2.0.2:
- Sortie de Git Hub : correctif pour Super Strength après la mise à jour v1.8.1.0 du jeu Giants (b21187)
Changelog 1.2.0.0:
- Page du véhicule : la fonction 'Gestion du contenu' se souviendra désormais des derniers paramètres jusqu'à ce que le véhicule soit quitté ou modifié.
- Page Véhicule : la fonctionnalité 'Supprimer tous les véhicules' ne supprimera plus les palettes.
Expand Down
4 changes: 3 additions & 1 deletion scripts/EasyDevControls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -535,11 +535,13 @@ function EasyDevControls:setSuperStrengthPlayerValues(superStrengthEnabled, user
currentPlayer.superStrengthPickupMassBackup = 0.2 -- compatibility
currentPlayer.superStrengthPickupDistanceBackup = 3 -- compatibility

Player.MAX_PICKABLE_OBJECT_MASS = 50
currentPlayer.maxPickableMass = 100
Player.MAX_PICKABLE_OBJECT_MASS = 100
Player.MAX_PICKABLE_OBJECT_DISTANCE = 6

infoText = "easyDevControls_superStrengthOnInfo"
else
currentPlayer.maxPickableMass = 0.2
Player.MAX_PICKABLE_OBJECT_MASS = 0.2
Player.MAX_PICKABLE_OBJECT_DISTANCE = 3

Expand Down
2 changes: 1 addition & 1 deletion scripts/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ local modName = g_currentModName or ""
local modDirectory = g_currentModDirectory or ""
local modSettingsDirectory = g_modSettingsDirectory or ""

local buildId = 1.3
local buildId = 1.4
local versionString = "0.0.0.0"
local releaseType = "GITHUB"

Expand Down

0 comments on commit ba4bf69

Please sign in to comment.