Logic hint tooltips
This commit is contained in:
@@ -56,6 +56,7 @@ public enum SAchievement{
|
||||
enablePixelation,
|
||||
openWiki,
|
||||
useAccelerator,
|
||||
unlockAllZones,
|
||||
|
||||
;
|
||||
|
||||
|
||||
@@ -54,6 +54,9 @@ public class SStats implements SteamUserStatsCallback{
|
||||
|
||||
if(Items.thorium.unlocked()) obtainThorium.complete();
|
||||
if(Items.titanium.unlocked()) obtainTitanium.complete();
|
||||
if(!content.sectors().contains(s -> s.locked())){
|
||||
unlockAllZones.complete();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -197,6 +200,9 @@ public class SStats implements SteamUserStatsCallback{
|
||||
Events.on(UnlockEvent.class, e -> {
|
||||
if(e.content == Items.thorium) obtainThorium.complete();
|
||||
if(e.content == Items.titanium) obtainTitanium.complete();
|
||||
if(e.content instanceof SectorPreset && !content.sectors().contains(s -> s.locked())){
|
||||
unlockAllZones.complete();
|
||||
}
|
||||
});
|
||||
|
||||
Events.run(Trigger.openWiki, openWiki::complete);
|
||||
|
||||
Reference in New Issue
Block a user