Skip to content

Commit

Permalink
Merge branch 'experimental'
Browse files Browse the repository at this point in the history
  • Loading branch information
Elaina69 committed Dec 12, 2024
2 parents 9b119a8 + 2d2a9c8 commit 74c461c
Show file tree
Hide file tree
Showing 21 changed files with 1,356 additions and 1,399 deletions.
8 changes: 6 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,12 @@ class ElainaTheme {
// Load plugins
// Custom BE, RP
const customBeRp = new CustomBeRp()
if (window.DataStore.get("Custom_RP")) customBeRp.RP()
if (window.DataStore.get("Custom_BE")) customBeRp.BE()
if (window.DataStore.get("Custom_RP")) {
window.setInterval(() => { customBeRp.RP() }
), 300}
if (window.DataStore.get("Custom_BE")) {
window.setInterval(() => { customBeRp.BE() }
), 300}

// Auto Accept
const autoAccept = new AutoAccept()
Expand Down
3 changes: 0 additions & 3 deletions src/src/assets/styles/components/loothelper.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.blue-essence-button-container {
height: 100%;
margin-top: 10px;
position: relative;
width: 40px;
Expand All @@ -26,7 +25,6 @@
}

.refresh-button-container {
height: 100%;
margin-top: 10px;
position: relative;
width: 40px;
Expand All @@ -53,7 +51,6 @@
}

.open-chests-button-container {
height: 100%;
margin-top: 10px;
position: relative;
width: 40px;
Expand Down
Loading

0 comments on commit 74c461c

Please sign in to comment.