Correct Mohydine's indentation

This commit is contained in:
jarod42 2004-06-19 15:09:09 +00:00
parent 490bfbe7de
commit 2646b59702

View file

@ -983,9 +983,9 @@ static int CclGetUnitTypeIdent(lua_State* l)
type = CclGetUnitType(l);
if (type) {
lua_pushstring(l, type->Ident);
lua_pushstring(l, type->Ident);
} else {
lua_pushstring(l, "unit not defined");
LuaError(l, "unit '%s' not defined" _C_ LuaToString(l, -1));
}
return 1;
}