diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bb7dce74..c9720e98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ This project follows [Semantic Versioning](http://semver.org) guidelines. * Fixes the `store()` function on the locations API not working due to an incorrect return typehint. * Fixes daemon secrets not being able to be reset on a Node. * Fixes an issue where files were not editable due to missing URL encoding in the file manager. +* Fixed checking of language changes +* Fixed Spigot egg not building versions other than `latest`. +* Fixed the Forge egg install script. ### Updated * Upgraded core to use Laravel `5.7.14`. diff --git a/app/Http/Controllers/Api/Application/Locations/LocationController.php b/app/Http/Controllers/Api/Application/Locations/LocationController.php index b829268d7..9220cf358 100644 --- a/app/Http/Controllers/Api/Application/Locations/LocationController.php +++ b/app/Http/Controllers/Api/Application/Locations/LocationController.php @@ -13,8 +13,8 @@ use Pterodactyl\Transformers\Api\Application\LocationTransformer; use Pterodactyl\Http\Controllers\Api\Application\ApplicationApiController; use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\GetLocationsRequest; -use Pterodactyl\Http\Requests\Api\Application\Locations\DeleteLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\StoreLocationRequest; +use Pterodactyl\Http\Requests\Api\Application\Locations\DeleteLocationRequest; use Pterodactyl\Http\Requests\Api\Application\Locations\UpdateLocationRequest; class LocationController extends ApplicationApiController