From fd5671e6db92a9506b880326e7b6e9ff8c0b70ba Mon Sep 17 00:00:00 2001 From: Marc Zinnschlag Date: Fri, 16 Nov 2012 12:45:07 +0100 Subject: [PATCH] fixed argument lists for setpcfacrep and modpcfacrep --- apps/openmw/mwscript/statsextensions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwscript/statsextensions.cpp b/apps/openmw/mwscript/statsextensions.cpp index 124eaf4c3..9bd517ba6 100644 --- a/apps/openmw/mwscript/statsextensions.cpp +++ b/apps/openmw/mwscript/statsextensions.cpp @@ -913,8 +913,8 @@ namespace MWScript extensions.registerFunction ("getdeadcount", 'l', "c", opcodeGetDeadCount); extensions.registerFunction ("getpcfacrep", 'l', "/c", opcodeGetPCFacRep, opcodeGetPCFacRepExplicit); - extensions.registerInstruction ("setpcfacrep", "/lc", opcodeSetPCFacRep, opcodeSetPCFacRepExplicit); - extensions.registerInstruction ("modpcfacrep", "/lc", opcodeModPCFacRep, opcodeModPCFacRepExplicit); + extensions.registerInstruction ("setpcfacrep", "l/c", opcodeSetPCFacRep, opcodeSetPCFacRepExplicit); + extensions.registerInstruction ("modpcfacrep", "l/c", opcodeModPCFacRep, opcodeModPCFacRepExplicit); } void installOpcodes (Interpreter::Interpreter& interpreter)