This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp | |
index 3ceb20b..c18d5cb 100644 | |
--- a/src/game/Spell.cpp | |
+++ b/src/game/Spell.cpp | |
@@ -3143,8 +3143,8 @@ void Spell::_handle_immediate_phase() | |
if (m_spellInfo->Effect[j] == 0) | |
continue; | |
- // apply Send Event effect to ground in case empty target lists | |
- if (m_spellInfo->Effect[j] == SPELL_EFFECT_SEND_EVENT && !HaveTargetsForEffect(SpellEffectIndex(j))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ $# != 2 ] | |
then | |
echo usage: $0 SOURCE HOST | |
exit 1 | |
fi | |
SOURCE=$1 | |
BACKUP_DIR=backup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[paper=a6]{scrartcl} | |
\usepackage[margin=.5cm]{geometry} | |
\usepackage{pst-barcode} | |
\usepackage{auto-pst-pdf} | |
\title{WLAN Access} | |
\date{} | |
\begin{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import roslib; roslib.load_manifest('smach_ros') | |
import rospy | |
import threading | |
import smach | |
__all__ = ['TimeoutState'] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from string import Template | |
def configure_file(template_filename, out, **kwargs): | |
"""Rewrites placeholders within the file according to the given argument | |
The file specified by template_filename is read. Occurences of template values (e.g. identifiers prefixed with '$', | |
for more details see string.Template) are replaced with the corresponding keyword argument value. The resulting file | |
is written to out. If out is a directory, the template's filename is stripped of the '.in' extension and used as |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import logging | |
import os | |
import os.path as osp | |
import sys | |
import sqlite3 | |
schema = ''' |