You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because i'm totally new to github, i don't want to fork or branche your code to suggest any changes.
Just a small suggestion for your "iitc: upgradeablePortals"-script:
In version 0.2.1 it shows all portals that could be upgraded to playerlevel-1
What do you think about marking only the portals, that could be upgraded by the player himself?
This is done with a very small change in line 128
Just replace
if(possibleLevel >= playerLevel-1) {
with
if(possibleLevel > portal.options.level) {
The text was updated successfully, but these errors were encountered:
There clearly are different opinions on what this plugin should show - personally, I'd like to see only those portals where I can upgrade the portal to a new level. @cmile seems to like the current solution with those portals that I am interested in marked with a different marker. You on the other hand would like to see all upgradeable portals, even those of lower levels.
A way to make this configurable would really be great.
Because i'm totally new to github, i don't want to fork or branche your code to suggest any changes.
Just a small suggestion for your "iitc: upgradeablePortals"-script:
In version 0.2.1 it shows all portals that could be upgraded to playerlevel-1
What do you think about marking only the portals, that could be upgraded by the player himself?
This is done with a very small change in line 128
Just replace
if(possibleLevel >= playerLevel-1) {
with
if(possibleLevel > portal.options.level) {
The text was updated successfully, but these errors were encountered: