-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed hardcore commands not marking file as dirty and saving it
Changed GUIs to dim the background by default Added icon and visibility options to quest lines Added indicators to quest line screen Added exception handling if selected entities break upon saving Changed entity search to no longer use class names
- Loading branch information
Showing
13 changed files
with
213 additions
and
120 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -221,5 +221,6 @@ pip-log.txt | |
.gradle/ | ||
.idea/ | ||
jars/ | ||
run/ | ||
classes/ | ||
out/ |
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
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
17 changes: 17 additions & 0 deletions
17
src/main/java/betterquesting/client/gui2/GuiDebugTest.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,17 @@ | ||
package betterquesting.client.gui2; | ||
|
||
import betterquesting.api2.client.gui.GuiScreenCanvas; | ||
import net.minecraft.client.gui.GuiScreen; | ||
|
||
public class GuiDebugTest extends GuiScreenCanvas | ||
{ | ||
public GuiDebugTest(GuiScreen parent) | ||
{ | ||
super(parent); | ||
} | ||
|
||
public void initPanel() | ||
{ | ||
super.initPanel(); | ||
} | ||
} |
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
45 changes: 0 additions & 45 deletions
45
src/main/java/betterquesting/client/gui2/GuiMultiTest.java
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.