-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add debug helper to login in dev env
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
src/testmod/java/io/github/ladysnake/impersonatest/ImpersonatestClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Impersonate | ||
* Copyright (C) 2020-2024 Ladysnake | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; If not, see <https://www.gnu.org/licenses>. | ||
*/ | ||
package io.github.ladysnake.impersonatest; | ||
|
||
import io.github.ladysnake.impersonate.Impersonate; | ||
import net.fabricmc.api.ClientModInitializer; | ||
import net.minecraft.client.MinecraftClient; | ||
|
||
public final class ImpersonatestClient implements ClientModInitializer { | ||
private static final boolean debugCredentials = Boolean.getBoolean("impersonate.debug.printCredentials"); | ||
|
||
@Override | ||
public void onInitializeClient() { | ||
if (debugCredentials) { | ||
// Here to help login within a dev environment - be very careful when running this code at home | ||
Impersonate.LOGGER.info("ACCESS_TOKEN " + MinecraftClient.getInstance().getSession().getAccessToken()); | ||
Impersonate.LOGGER.info("UUID " + MinecraftClient.getInstance().getSession().getUuidOrNull()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters