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
When inside orb the message should be "The sphere rings with a hollow noise, but the rod charges up." instead. This never get printed because AfterRoutines is wrongly identified as BeforeRoutines by Reform (or Reform symbol-file). The routine "StrikeSub" should be:
[ StrikeSub ;
if( noun notin player ) "But you aren't holding it.";
if( noun hasnt rod_attr )
print_ret "You ineffectually bash ", (the) noun, " on the ground.";
if( noun has charged ) {
deadflag = DIED;
"The already-charged rod explodes with cataclysmic violence, burying everything nearby in rubble!";
}
give noun charged;
Achieved(SCORE_WAND);
if( AfterRoutines() == true ) {
rtrue;
}
"The rod charges with etherial power, drawn up from the earth through ley lines...";
];
The text was updated successfully, but these errors were encountered:
When inside orb the message should be "The sphere rings with a hollow noise, but the rod charges up." instead. This never get printed because AfterRoutines is wrongly identified as BeforeRoutines by Reform (or Reform symbol-file). The routine "StrikeSub" should be:
The text was updated successfully, but these errors were encountered: