diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-18 17:27:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-18 17:27:43 -0300 |
commit | 0fc4fb146a27cdf61dfe1bceaef70ee7b82550ce (patch) | |
tree | 5a4bfaba1ce03765f9ecd618df71cebcc0a25a32 /npc/commands | |
parent | 22009abf953489dcd8b30eec439aa33aa753851b (diff) | |
download | serverdata-0fc4fb146a27cdf61dfe1bceaef70ee7b82550ce.tar.gz serverdata-0fc4fb146a27cdf61dfe1bceaef70ee7b82550ce.tar.bz2 serverdata-0fc4fb146a27cdf61dfe1bceaef70ee7b82550ce.tar.xz serverdata-0fc4fb146a27cdf61dfe1bceaef70ee7b82550ce.zip |
Fix some CI issues, and a bug in @grantpower
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/grantpower.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/npc/commands/grantpower.txt b/npc/commands/grantpower.txt index a68e11d00..b059a9155 100644 --- a/npc/commands/grantpower.txt +++ b/npc/commands/grantpower.txt @@ -51,20 +51,21 @@ OnCall: getitembound .@ite, 1, 1; // Account bound or char bound? (1 or 4) dispbottom l("You received the @@ from @@.", getitemlink(.@ite), strcharinfo(0, "someone", .@ori)); consoleinfo("%s is the new owner for the %s.", strcharinfo(0), getitemname(.@ite)); + .@request$ = strcharinfo(0); detachrid(); attachrid(.@ori); delitem .@ite, 1; switch (.@ite) { case DemureAxe: - $DEMUR_HOLDER$ = strcharinfo(0); break; + $DEMUR_HOLDER$ = .@request$; break; case Tyranny: - $TYRAN_HOLDER$ = strcharinfo(0); break; + $TYRAN_HOLDER$ = .@request$; break; case Runestaff: - $RUNES_HOLDER$ = strcharinfo(0); break; + $RUNES_HOLDER$ = .@request$; break; case AegisShield: - $AEGIS_HOLDER$ = strcharinfo(0); break; + $AEGIS_HOLDER$ = .@request$; break; case Blightbringer: - $SHADY_HOLDER$ = strcharinfo(0); break; + $SHADY_HOLDER$ = .@request$; break; default: Exception("Invalid legendary item "+str(.@ite), RB_DEFAULT|RB_IRCBROADCAST); break; |