1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-03 07:39:41 +00:00

Fix a few text defines

This commit is contained in:
scrawl 2014-01-14 06:03:34 +01:00
parent 90b92a8f41
commit 26d972280f

View file

@ -64,7 +64,7 @@ namespace Interpreter{
retval << context.getActionBinding("#{sRestKey}");
}
else if((found = Check(temp, "actionmenumode", &i, &start))){
retval << context.getActionBinding("#{sJournal}");
retval << context.getActionBinding("#{sInventory}");
}
else if((found = Check(temp, "actionactivate", &i, &start))){
retval << context.getActionBinding("#{sActivate}");
@ -88,10 +88,10 @@ namespace Interpreter{
retval << context.getActionBinding("#{sBack}");
}
else if((found = Check(temp, "actionuse", &i, &start))){
retval << "PLACEHOLDER_ACTION_USE";
retval << context.getActionBinding("#{sUse}");
}
else if((found = Check(temp, "actionrun", &i, &start))){
retval << "PLACEHOLDER_ACTION_RUN";
retval << context.getActionBinding("#{sRun}");
}
else if((found = Check(temp, "pcclass", &i, &start))){
retval << context.getPCClass();