Commit 614abcb3c3384b84cc574beaee6e13ccc9a56e73

Authored by dg
1 parent b7e25465

Thaloren-Tree Longbow range correctly set to 10 instead of 18


git-svn-id: http://svn.net-core.org/repos/t-engine4@3334 51575b47-30f0-44d4-a5cc-537603b46e54
... ... @@ -400,7 +400,7 @@ newEntity{ base = "BASE_LONGBOW",
400 400 cost = 800,
401 401 material_level = 5,
402 402 combat = {
403   - range = 18,
  403 + range = 10,
404 404 physspeed = 0.7,
405 405 apr = 12,
406 406 },
... ...
... ... @@ -1288,7 +1288,7 @@ static int map_to_screen(lua_State *L)
1288 1288 if (always_show && changed)
1289 1289 {
1290 1290 lua_getglobal(L, "game");
1291   - lua_pushstring(L, "updateFOV");
  1291 + lua_pushliteral(L, "updateFOV");
1292 1292 lua_gettable(L, -2);
1293 1293 if (lua_isfunction(L, -1)) {
1294 1294 lua_pushvalue(L, -2);
... ...