Unknown variable 'else' (charpane.ash, line 3447)
Or just delete the '{' on line 3445, I think
Deleting the { worked for me too, though my editor kept confusing me with the ' quote in the middle of Walford's bucket. Sent me down an in incorrect path. Haha. All fixed now. Thanks!
Or just delete the '{' on line 3445, I think
r313 commit message said:Improve selecting best inventory gear. Finally make it work with experimental and minimal layouts. (Does anyone use those?)
This is what mine looks like in Vanilla:
View attachment 8693
The images go from /adventureimages/vykfurn1.gif - /adventureimages/vkfurn6.gif. The blank space you see in my attached photo is part of the image itself, and would probably benefit from getting cropped (other images have whitespace on top, no idea why).
edit: it's because vykfurn5.gif takes up that much space, and I bet they wanted all the images to be the same dimension.
I'll give that a try for a few days.As far as I know, that has nothing to do with ChIT. A more useful test would be if the charpane gets stuck 'loading' would be if it happens after uninstalling ChIT.
Basically it'll just get stuck in whatever state it's it, while the (browsers) tab icon spins. If I reload the entire page the charpane will just be a blank screen (tab icon will keep spinning). I can keep adventuring and chatting like normal but the charpane will never change again.I'm also not clear what you mean by stuck 'loading.' Is the charpane half-loaded? Are the tables garbled? Is it blank?
Chrome, but I can try another.What browser are you using and does it happen if you switch browsers?
location parseLoc(string loc) {
if(to_location(loc) != $location[none])
return to_location(loc);
* NEW BIT
if(loc.index_of("The ")==0 && to_location(loc.substring(4)) != $location[none])
return to_location(loc.substring(4));
* END OF NEW BIT
switch(loc) { // Some of these are really tough for KoLmafia to deal with!
case "(none)":
return $location[none];
case "The Orcish Frat House":
return $location[Frat House];
case "The Hippy Camp":
return $location[Hippy Camp];
}
return get_property("lastAdventure").to_location();
}