Skip to content

Commit

Permalink
Merge pull request #67 from seionmoya/fix-naming
Browse files Browse the repository at this point in the history
Rename ClientGameProfileItemsMoving
  • Loading branch information
seionmoya authored Oct 7, 2024
2 parents 3f62dca + 3ca0a60 commit 1c929b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

namespace Fuyu.Backend.EFT.Controllers
{
public class ClientGameProfileItemsMoving : HttpController
public class GameProfileItemsMovingController : HttpController
{
private ItemEventRouter _router = new ItemEventRouter();

public ClientGameProfileItemsMoving() : base("/client/game/profile/items/moving")
public GameProfileItemsMovingController() : base("/client/game/profile/items/moving")
{
_router.AddController<CustomizationBuyEventController>();
_router.AddController<EatItemEventController>();
Expand Down
2 changes: 1 addition & 1 deletion Fuyu.Backend.EFT/Servers/EftMainServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public void RegisterServices()
HttpRouter.AddController<GameLogoutController>();
HttpRouter.AddController<GameModeController>();
HttpRouter.AddController<GameProfileCreateController>();
HttpRouter.AddController<GameProfileItemsMovingController>();
HttpRouter.AddController<GameProfileListController>();
HttpRouter.AddController<GameProfileNicknameReservedController>();
HttpRouter.AddController<GameProfileNicknameValidateController>();
Expand Down Expand Up @@ -68,7 +69,6 @@ public void RegisterServices()
HttpRouter.AddController<SurveyController>();
HttpRouter.AddController<TraderSettingsController>();
HttpRouter.AddController<WeatherController>();
HttpRouter.AddController<ClientGameProfileItemsMoving>();
}
}
}

0 comments on commit 1c929b0

Please sign in to comment.