add 'local' keyword in fields.qc, it's for qcc standard anyway

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-18 14:56:15 +02:00
parent 267bb7d41e
commit efc540ceba

View file

@ -15,7 +15,6 @@ void(entity) kill = #4;
.void() fun;
void(entity a, .float f) printfield = {
ftos(3+4);
print3("The field is ", ftos(a.f), "\n");
};
@ -24,7 +23,7 @@ void() funny = {
};
void() main = {
entity pawn;
local entity pawn;
pawn = spawn();