Skip to content

Commit

Permalink
incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenga8533 committed Dec 31, 2023
1 parent 6cecb1e commit f455a24
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 19 deletions.
17 changes: 4 additions & 13 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
[
"- Added fairy soul waypoints",
"- Added `/va vl` (valuelist)",
"- Created a website: https://zhenga8533.github.io/VolcAddons/ (prettier README)",
"- Changed uncommon command parsing to be less",
"- Changed some GUI commands",
"- Changed list printing",
"- Fixed party join message",
"- Fixed some commands only printing 'Unknown Argument'",
"- Fixed compass locator not resetting on world change",
"- Fixed pressing tab opening chat",
"- Fixed various smaller bugs",
"- Fixed symbols remaining in names when using commands",
"- Removed `/va apex`"
"- TODO: Added blocklist",
"- TODO: Added spamlist",
"- TODO: Added pest warp",
"- TODO: Added /va nw"
]
10 changes: 5 additions & 5 deletions features/general/ArmorDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ registerWhen(register("tick", () => {
* Render equipment pieces as icons
*/
let equipment = [null, null, null, null];
new Overlay("equipDisplay", ["all"], () => true, data.AAL, "moveEq", "", () => {
let yDiff = -15 * data.AAL[2];
new Overlay("equipDisplay", ["all"], () => true, data.EQL, "moveEq", "", () => {
let yDiff = -15 * data.EQL[2];

equipment.forEach(piece => {
yDiff += 15 * data.AAL[2];
yDiff += 15 * data.EQL[2];
if (piece === null) return;

// Draw icon
piece.draw(data.AAL[0], data.AAL[1] + yDiff, data.AAL[2]);
piece.draw(data.EQL[0], data.EQL[1] + yDiff, data.EQL[2]);

// Draw cd/stars
const size = piece.getStackSize();
if (size > 1) Renderer.drawString(size, data.AAL[0] - Renderer.getStringWidth(size), data.AAL[1] + yDiff);
if (size > 1) Renderer.drawString(size, data.EQL[0] - Renderer.getStringWidth(size), data.EQL[1] + yDiff);
});

return true;
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"creator": "Volcaronitee",
"description": "joe.",
"entry": "index.js",
"version": "2.8.4",
"version": "2.8.5",
"requires": [
"axios",
"BeaconBeam",
Expand Down
1 change: 1 addition & 0 deletions utils/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export let data = new PogObject("VolcAddons", {
"XL": [Renderer.screen.getWidth()/2 - 96, Renderer.screen.getHeight()*6/7, 1, false], // Searchbox location
"YL": [770, 125, 1.2, false], // SkyBlock Stats Location
"ZL": [780, 330, 1.2, false], // Kuudra Profit Tracker Location
"EQL": [905, 65, 1.2, false], // Equipment Location
"PHL": [170, 160, 1.2, false], // Pesthunter Location
"SDL": [170, 180, 1.2, false], // Spray Display Location
// Rift waypoint properties
Expand Down

0 comments on commit f455a24

Please sign in to comment.