mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-12 00:38:44 +00:00
Merge remote-tracking branch 'upstream/master' into formats/premodern
This commit is contained in:
@@ -616,7 +616,8 @@ public class RewardActor extends Actor implements Disposable, ImageFetcher.Callb
|
||||
|
||||
public void removeTooltip() {
|
||||
if (tooltip != null) {
|
||||
tooltip.getActor().remove();
|
||||
if (tooltip.getActor() != null)
|
||||
tooltip.getActor().remove();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -934,8 +935,10 @@ public class RewardActor extends Actor implements Disposable, ImageFetcher.Callb
|
||||
}
|
||||
|
||||
public void hide() {
|
||||
tooltip_actor.remove();
|
||||
switchButton.remove();
|
||||
if (tooltip_actor != null)
|
||||
tooltip_actor.remove();
|
||||
if (switchButton != null)
|
||||
switchButton.remove();
|
||||
shown = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2639,14 +2639,6 @@
|
||||
"options": [
|
||||
{
|
||||
"action": [
|
||||
{
|
||||
"grantRewards": [
|
||||
{
|
||||
"type": "shards",
|
||||
"count": 15
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"grantRewards": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user