summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorenneract <trem.redman@gmail.com>2014-02-26 01:13:41 +0100
committerenneract <trem.redman@gmail.com>2014-02-26 01:13:41 +0100
commitd67878e9c598d9cd92156c701e05b51c39f49e93 (patch)
treef2585a84a532480bfba7e00666356d5215dcb6cb /src/game
parent2e8851609620e0e45a8a26b53ae7f3ba898c63df (diff)
0.1.8
Diffstat (limited to 'src/game')
-rw-r--r--src/game/bg_public.h4
-rw-r--r--src/game/g_buildable.c9
-rw-r--r--src/game/tremulous.h2
3 files changed, 12 insertions, 3 deletions
diff --git a/src/game/bg_public.h b/src/game/bg_public.h
index cbaf90a..1fa36ca 100644
--- a/src/game/bg_public.h
+++ b/src/game/bg_public.h
@@ -26,6 +26,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//tremulous balance header
#include "tremulous.h"
+// thanks for defining MAX_EMOTICONS in q_shared...
+#undef MAX_EMOTICONS
+#define MAX_EMOTICONS 1024
+
// because games can change separately from the main system version, we need a
// second version that must match between game and cgame
#define GAME_VERSION "base"
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c
index 7c051bd..1faca0c 100644
--- a/src/game/g_buildable.c
+++ b/src/game/g_buildable.c
@@ -465,6 +465,9 @@ void G_ScanPowerGrid( gentity_t *this )
if( !next->active )
continue;
grid.sources[ grid.sourceCount++ ] = next;
+
+ next->powerNetwork = grid.networkID;
+ G_ScanPowerGrid( next );
}
else
grid.load[ grid.loadCount++ ] = next;
@@ -652,8 +655,8 @@ void G_UpdatePowerGrid( float dt )
ent->voltage -= ent->current * dt / CAPBANK_CAPACITY;
//zapping effect
- #define MIN_ZAP_CURRENT 8.0f
- #define ZAP_CHANCE_FACTOR 0.007f
+ #define MIN_ZAP_CURRENT 15.0f
+ #define ZAP_CHANCE_FACTOR 0.001f
if( ent->current > MIN_ZAP_CURRENT )
{
float chance;
@@ -3192,10 +3195,12 @@ itemBuildError_t G_CanBuild( gentity_t *ent, buildable_t buildable, int distance
reason = IBE_NORMAL;
//the only buildable one can build on is a cuboid
+ /*
if( tr1.entityNum != ENTITYNUM_WORLD )
if( g_entities[ tr1.entityNum ].s.eType == ET_BUILDABLE &&
!BG_Buildable( g_entities[ tr1.entityNum ].s.modelindex, NULL )->cuboid )
reason = IBE_NORMAL;
+ */
contents = trap_PointContents( entity_origin, -1 );
diff --git a/src/game/tremulous.h b/src/game/tremulous.h
index 71d848e..e31f59a 100644
--- a/src/game/tremulous.h
+++ b/src/game/tremulous.h
@@ -675,7 +675,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define RTG_RESISTANCE 5.0f
-#define REACTOR_RESISTANCE 1.0f
+#define REACTOR_RESISTANCE 1.66f
#define CAPBANK_RESISTANCE 0.05f
#define CAPBANK_CAPACITY 2.0f