aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonMap
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-18 00:25:15 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-04-18 00:25:15 +0800
commit082d9cf4af63495a3d8709b0ee87dc935ed986dc (patch)
treee1da1a02907573f68c8052ec5a2a77366385361c /features/dungeonMap
parentf718bd5743701a7fb5f96e74a4df75145cc28789 (diff)
downloadSoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.tar.gz
SoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.tar.bz2
SoopyV2-082d9cf4af63495a3d8709b0ee87dc935ed986dc.zip
Many changes
Diffstat (limited to 'features/dungeonMap')
-rw-r--r--features/dungeonMap/index.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/features/dungeonMap/index.js b/features/dungeonMap/index.js
index f8abb4e..db22135 100644
--- a/features/dungeonMap/index.js
+++ b/features/dungeonMap/index.js
@@ -720,7 +720,7 @@ class SpiritLeapOverlay {
tick(){
let itemsNew = {}
- if(Player.getOpenedInventory()?.getName() === "Spirit Leap"){
+ if(Player.getContainer()?.getName() === "Spirit Leap"){
this.players = {}
Scoreboard.getLines().forEach(line=>{
@@ -733,7 +733,7 @@ class SpiritLeapOverlay {
})
for(let i = 1;i<9*3;i++){
- let item = Player.getOpenedInventory().getStackInSlot(i)
+ let item = Player.getContainer().getStackInSlot(i)
if(item && item.getID()!==160){
itemsNew[item.getName()] = i
}
@@ -745,7 +745,7 @@ class SpiritLeapOverlay {
Object.keys(this.items).forEach((name, i)=>{
let button = new ButtonWithArrow().setText((ChatLib.removeFormatting(name)===this.parent.lastDoorOpener?"&4":"&2")+"["+this.players[ChatLib.removeFormatting(name)]+"] "+ChatLib.removeFormatting(name)).addEvent(new SoopyMouseClickEvent().setHandler(()=>{
- Player.getOpenedInventory().click(itemsNew[name])
+ Player.getContainer().click(itemsNew[name])
ChatLib.chat("Leaping to " + name)
})).setLocation((i%2)*0.5,Math.floor(i/2)*0.5,0.5,0.5)
button.text.setLocation(0.5, 0, 0.4, 1)
@@ -833,12 +833,12 @@ class soopyGuiMapRendererThing extends SoopyGuiElement {
let closestPlayer = this.getClosestPlayerTo(x, y, size, scale, mouseX, mouseY)
if(closestPlayer){
- if(Player.getOpenedInventory()?.getName() === "Spirit Leap"){
+ if(Player.getContainer()?.getName() === "Spirit Leap"){
for(let i = 1;i<9*3;i++){
- let item = Player.getOpenedInventory().getStackInSlot(i)
+ let item = Player.getContainer().getStackInSlot(i)
if(item && item.getID()!==160){
if(ChatLib.removeFormatting(item.getName()) === closestPlayer.username){
- Player.getOpenedInventory().click(i)
+ Player.getContainer().click(i)
ChatLib.chat("Leaping to " + closestPlayer.username)
}
}