summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorsigtus <vantimothy@openmailbox.org>2019-01-29 04:49:34 -0300
committerGitHub <noreply@github.com>2019-01-29 04:49:34 -0300
commit6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1 (patch)
treebbe59ec0bc6d1188380a5580cc1a7bc974d5bc56 /npc
parent406ae363a78527fa1189cf29ab322e0a9146e330 (diff)
downloadhercules-6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1.tar.gz
hercules-6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1.tar.bz2
hercules-6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1.tar.xz
hercules-6a7ca8fa08d881527dc5e9b7ae36604b73c34ae1.zip
Added missing return on F_GetTradeRestriction
Diffstat (limited to 'npc')
-rw-r--r--npc/other/Global_Functions.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt
index 904ed7165..860053b70 100644
--- a/npc/other/Global_Functions.txt
+++ b/npc/other/Global_Functions.txt
@@ -474,4 +474,5 @@ function script F_GetTradeRestriction {
if (.@trade & ITR_NOAUCTION) {
.@trade$ += "NoAuction|";
}
+ return .@trade$;
}